mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
14 lines
353 B
TypeScript
14 lines
353 B
TypeScript
// Type definitions for gulp-dtsm 0.0.0
|
|
// Project: https://github.com/9joneg/gulp-dtsm
|
|
// Definitions by: Aya Morisawa <https://github.com/AyaMorisawa>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
/// <reference path="../node/node.d.ts" />
|
|
|
|
declare module "gulp-dtsm" {
|
|
function dtsm(): NodeJS.WritableStream;
|
|
|
|
export = dtsm;
|
|
}
|
|
|