Update gulp-watch.d.ts

fix
```
import * as watch from 'gulp-watch'
```
fail
This commit is contained in:
LongYinan
2015-12-30 10:33:27 +08:00
committed by Long Yinan
parent dc9dabe74a
commit 6d72f60cc0
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
/// <reference path="gulp-watch.d.ts" />
/// <reference path="../gulp/gulp.d.ts" />
import gulp = require('gulp');
import watch = require('gulp-watch');
import * as gulp from 'gulp';
import * as watch from 'gulp-watch';
gulp.task('stream', () =>
gulp.src('css/**/*.css')
+1 -1
View File
@@ -22,6 +22,6 @@ declare module 'gulp-watch' {
}
function watch(glob: string | Array<string>, options?: IOptions, callback?: Function): IWatchStream;
namespace watch {}
export = watch;
}