Fix further linting-errors

This commit is contained in:
Manuel Thalmann 2021-05-11 01:00:27 +00:00
parent c7157cc247
commit 5f560e151e

View file

@ -1,12 +1,16 @@
import { TaskFunction }from "gulp"; import { TaskFunction } from "gulp";
/** /**
* @inheritdoc * @inheritdoc
*/ */
declare global declare global
{ {
/**
* Represents a gulp-task.
*/
// eslint-disable-next-line @typescript-eslint/naming-convention
interface Function extends Partial<TaskFunction> interface Function extends Partial<TaskFunction>
{ } { }
} }
export {}; export {};