smartgulp/dist/smartgulp.classes.gulpstream.d.ts

11 lines
308 B
TypeScript
Raw Normal View History

2017-04-29 22:25:31 +00:00
/// <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>;
}