smartgulp/dist/smartgulp.classes.gulpstream.d.ts
2017-04-30 00:25:31 +02:00

11 lines
308 B
TypeScript

/// <reference types="node" />
import { Smartfile } from 'smartfile';
import { Transform } from 'stream';
export declare class GulpStream {
stream: Transform;
/**
* allows you to pipe a SmartfileArray into the stream
*/
pipeSmartfileArray(smartfileArray: Smartfile[]): Promise<void>;
}