mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-21 21:31:12 +08:00
18 lines
446 B
TypeScript
18 lines
446 B
TypeScript
// Type definitions for gulp-flatten
|
|
// Project: https://github.com/armed/gulp-flatten
|
|
// Definitions by: Keita Kagurazaka <https://github.com/k-kagurazaka>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
/// <reference path="../node/node.d.ts" />
|
|
|
|
declare module "gulp-flatten" {
|
|
|
|
interface IOptions {
|
|
newPath: string;
|
|
}
|
|
|
|
function flatten(options?: IOptions): NodeJS.ReadWriteStream;
|
|
|
|
export = flatten;
|
|
}
|