@push.rocks/smartgulp
Version:
lightweight gulp replacement
11 lines (10 loc) • 345 B
TypeScript
/// <reference types="node" resolution-mode="require"/>
import { SmartFile } from '@push.rocks/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>;
}