2021-05-11 01:00:27 +00:00
|
|
|
import { TaskFunction } from "gulp";
|
2019-10-05 21:35:56 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
|
|
|
declare global
|
|
|
|
{
|
2021-05-11 01:00:27 +00:00
|
|
|
/**
|
|
|
|
* Represents a gulp-task.
|
|
|
|
*/
|
|
|
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
2019-10-07 15:50:06 +00:00
|
|
|
interface Function extends Partial<TaskFunction>
|
2019-10-05 21:35:56 +00:00
|
|
|
{ }
|
|
|
|
}
|
|
|
|
|
2021-05-11 01:00:27 +00:00
|
|
|
export {};
|