diff --git a/gulp-watch/gulp-watch-tests.ts b/gulp-watch/gulp-watch-tests.ts
index dd237dccc..d912199fd 100644
--- a/gulp-watch/gulp-watch-tests.ts
+++ b/gulp-watch/gulp-watch-tests.ts
@@ -1,8 +1,8 @@
///
///
-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')
diff --git a/gulp-watch/gulp-watch.d.ts b/gulp-watch/gulp-watch.d.ts
index 35fb7de95..74af52547 100644
--- a/gulp-watch/gulp-watch.d.ts
+++ b/gulp-watch/gulp-watch.d.ts
@@ -22,6 +22,6 @@ declare module 'gulp-watch' {
}
function watch(glob: string | Array, options?: IOptions, callback?: Function): IWatchStream;
-
+ namespace watch {}
export = watch;
}