Merge pull request #7388 from Brooooooklyn/patch-3

Update gulp-watch.d.ts
This commit is contained in:
Horiuchi_H
2016-01-04 15:58:24 +09:00
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;
}