mantra/.gulp/TaskFunction.ts

13 lines
200 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
2019-10-07 15:50:06 +00:00
interface Function extends Partial<TaskFunction>
{ }
}
export {};