From 4f99c3c7e56b93e8b859fdaa008319224f887b6e Mon Sep 17 00:00:00 2001 From: guischdi Date: Tue, 12 Jan 2016 15:18:58 +0100 Subject: [PATCH] update shel.task() signature add done function to method signature of shell.task() --- gulp-shell/gulp-shell.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulp-shell/gulp-shell.d.ts b/gulp-shell/gulp-shell.d.ts index d88f27ed6a..4d18d610c8 100644 --- a/gulp-shell/gulp-shell.d.ts +++ b/gulp-shell/gulp-shell.d.ts @@ -10,7 +10,7 @@ declare module "gulp-shell" { namespace shell { interface Shell { (commands: string|string[], options?: Option): NodeJS.ReadWriteStream; - task(commands: string|string[], options?: Option): () => NodeJS.ReadWriteStream; + task(commands: string|string[], options?: Option): (done: Function) => NodeJS.ReadWriteStream; } interface Option {