/var/www/greso.tech/server/nsm/node_modules/pdf-lib/ts3.4/es/core/streams
NameSizeModeActions
Ascii85Stream.d.ts3500644editdlrm
AsciiHexStream.d.ts3580644editdlrm
decode.d.ts2230644editdlrm
DecodeStream.d.ts9610644editdlrm
FlateStream.d.ts4480644editdlrm
LZWStream.d.ts4450644editdlrm
RunLengthStream.d.ts3360644editdlrm
Stream.d.ts12230644editdlrm
Edit: /var/www/greso.tech/server/nsm/node_modules/pdf-lib/ts3.4/es/core/streams/DecodeStream.d.ts (961B)
import Stream, { StreamType } from "./Stream"; /** * Super class for the decoding streams */ declare class DecodeStream implements StreamType { protected bufferLength: number; protected buffer: Uint8Array; protected eof: boolean; private pos; private minBufferLength; constructor(maybeMinBufferLength?: number); readonly isEmpty: boolean; getByte(): number; getUint16(): number; getInt32(): number; getBytes(length: number, forceClamped?: boolean): Uint8Array | Uint8ClampedArray; peekByte(): number; peekBytes(length: number, forceClamped?: boolean): Uint8Array | Uint8ClampedArray; skip(n: number): void; reset(): void; makeSubStream(start: number, length: number): Stream; decode(): Uint8Array; protected readBlock(): void; protected ensureBuffer(requested: number): Uint8Array; } export default DecodeStream; //# sourceMappingURL=DecodeStream.d.ts.map