mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 21:00:01 +08:00
20 lines
476 B
TypeScript
20 lines
476 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 path="../node/node.d.ts" />
|
|
|
|
declare module "gulp-flatten" {
|
|
|
|
interface IOptions {
|
|
newPath: string;
|
|
}
|
|
|
|
function flatten(options?: IOptions): NodeJS.ReadWriteStream;
|
|
|
|
namespace flatten {}
|
|
|
|
export = flatten;
|
|
}
|