Merge pull request #1 from guischdi/patch-1

update shell.task() signature
This commit is contained in:
guischdi
2016-01-12 15:58:45 +01:00
+1 -1
View File
@@ -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 {