13 lines
200 B
TypeScript
13 lines
200 B
TypeScript
import { TaskFunction } from "gulp";
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
declare global
|
|
{
|
|
// tslint:disable-next-line: completed-docs
|
|
interface Function extends Partial<TaskFunction>
|
|
{ }
|
|
}
|
|
|
|
export {}; |