File tree Expand file tree Collapse file tree 1 file changed +1
-11
lines changed Expand file tree Collapse file tree 1 file changed +1
-11
lines changed Original file line number Diff line number Diff line change 1
- import { Transform , TransformCallback } from "node:stream" ;
2
- import File from "vinyl"
1
+ import { Transform } from "node:stream" ;
3
2
4
3
/**
5
4
* Minifies PHP source code by removing comments and whitespace.
@@ -11,15 +10,6 @@ export class GulpPlugin extends Transform {
11
10
* @param options An object providing values to initialize this instance.
12
11
*/
13
12
constructor ( options ?: GulpPluginOptions ) ;
14
-
15
- /**
16
- * Transforms input and produces output.
17
- * @param chunk The chunk to transform.
18
- * @param encoding The encoding type if the chunk is a string.
19
- * @param callback The function to invoke when the supplied chunk has been processed.
20
- * @returns The transformed chunk.
21
- */
22
- _transform ( chunk : File , encoding : NodeJS . BufferEncoding , callback : TransformCallback ) : Promise < void > ;
23
13
}
24
14
25
15
/**
You can’t perform that action at this time.
0 commit comments