Merge pull request #7589 from guischdi/master

updated signature of shell.task()
This commit is contained in:
Horiuchi_H
2016-01-14 17:05:27 +09: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 {