UNPKG

declarations

Version:

[![npm version](https://badge.fury.io/js/declarations.svg)](https://www.npmjs.com/package/declarations)

20 lines (13 loc) 476 B
// 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; }