DefinitelyTyped/types/gulp-batch/gulp-batch-tests.ts

9 lines
240 B
TypeScript

import * as gulp from "gulp";
import batch = require("gulp-batch");
gulp.task('default', () => {
gulp.watch([ 'lib/**', 'test/**' ], batch((events: any, cb: any) => {
events.on('data', console.log).on('end', cb);
}));
});