noe reading correctly

This commit is contained in:
2017-04-30 00:25:31 +02:00
parent be2fd470d6
commit 3cd7355872
33 changed files with 445 additions and 18 deletions

10
dist/smartgulp.classes.gulpstream.d.ts vendored Normal file
View File

@@ -0,0 +1,10 @@
/// <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>;
}