mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
19 lines
424 B
TypeScript
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;
|