12 lines
143 B
TypeScript
12 lines
143 B
TypeScript
|
import { TaskFunction } from "gulp";
|
||
|
|
||
|
/**
|
||
|
* @inheritdoc
|
||
|
*/
|
||
|
declare global
|
||
|
{
|
||
|
interface Function extends TaskFunction
|
||
|
{ }
|
||
|
}
|
||
|
|
||
|
export {};
|