mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-08-28 12:43:06 +08:00
12 lines
306 B
TypeScript
12 lines
306 B
TypeScript
/// <reference path="./gulp-dtsm.d.ts" />
|
|
/// <reference path="../node/node.d.ts" />
|
|
/// <reference path="../gulp/gulp.d.ts" />
|
|
|
|
import dtsm = require('gulp-dtsm');
|
|
import gulp = require('gulp');
|
|
|
|
var stream: NodeJS.WritableStream = dtsm();
|
|
|
|
gulp.task('dtsm', () => gulp.src('./dtsm.json').pipe(dtsm()));
|
|
|