mantra/gulp/TaskFunction.ts

17 lines
269 B
TypeScript
Raw Normal View History

2021-05-11 01:00:27 +00:00
import { TaskFunction } from "gulp";
/**
* @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>
{ }
}
2021-05-11 01:00:27 +00:00
export {};