DefinitelyTyped/types/gulp-flatten/index.d.ts
2017-03-24 14:27:52 -07:00

19 lines
424 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/DefinitelyTyped/DefinitelyTyped
/// <reference types="node" />
interface IOptions {
newPath: string;
}
declare function flatten(options?: IOptions): NodeJS.ReadWriteStream;
declare namespace flatten { }
export = flatten;