17 lines
269 B
TypeScript
17 lines
269 B
TypeScript
import { TaskFunction } from "gulp";
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
declare global
|
|
{
|
|
/**
|
|
* Represents a gulp-task.
|
|
*/
|
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
interface Function extends Partial<TaskFunction>
|
|
{ }
|
|
}
|
|
|
|
export {};
|