mantra/gulp/TaskFunction.ts

12 lines
151 B
TypeScript
Raw Normal View History

2021-05-11 00:56:38 +00:00
import { TaskFunction }from "gulp";
/**
* @inheritdoc
*/
declare global
{
2019-10-07 15:50:06 +00:00
interface Function extends Partial<TaskFunction>
{ }
}
export {};