mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-20 16:14:57 +08:00
10 lines
207 B
TypeScript
10 lines
207 B
TypeScript
|
|
/// <reference types="node" />
|
|
|
|
import * as dtsm from 'gulp-dtsm';
|
|
import * as gulp from 'gulp';
|
|
|
|
var stream: NodeJS.WritableStream = dtsm();
|
|
|
|
gulp.task('dtsm', () => gulp.src('./dtsm.json').pipe(dtsm()));
|