commit
This commit is contained in:
9
build/src/export/packer/buffer-stream.d.ts
vendored
Normal file
9
build/src/export/packer/buffer-stream.d.ts
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
/// <reference types="node" />
|
||||
import { Writable } from "stream";
|
||||
export declare class BufferStream extends Writable {
|
||||
private data;
|
||||
constructor();
|
||||
_write(chunk: any, encoding: string, next: (err?: Error) => void): void;
|
||||
end(cb?: Function): void;
|
||||
readonly Buffer: Buffer;
|
||||
}
|
Reference in New Issue
Block a user