Files
DefinitelyTyped/gulp-flatten/gulp-flatten.d.ts
Long Yinan 806d0f8237 fix import
2015-12-30 19:04:53 +08:00

20 lines
472 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;
namespace flatten {}
export = flatten;
}