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