mantra/.gulp/TaskFunction.ts

13 lines
191 B
TypeScript
Raw Normal View History

import { TaskFunction } from "gulp";
/**
* @inheritdoc
*/
declare global
{
2019-10-07 11:48:01 +00:00
// tslint:disable-next-line: completed-docs
interface Function extends TaskFunction
{ }
}
export {};