UNPKG
@push.rocks/smartgulp
Version:
latest (3.1.0)
3.1.0
3.0.4
3.0.3
3.0.0
lightweight gulp replacement
gitlab.com/push.rocks/smartevent
@push.rocks/smartgulp
/
dist
/
smartgulp.classes.gulpstream.d.ts
11 lines
(10 loc)
•
308 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/// <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
>; }