the-forest/client/node_modules/@libsql/hrana-client/lib-esm/byte_queue.d.ts

9 lines
204 B
TypeScript
Raw Normal View History

2024-09-17 20:35:18 -04:00
export declare class ByteQueue {
#private;
constructor(initialCap: number);
get length(): number;
data(): Uint8Array;
push(chunk: Uint8Array): void;
shift(length: number): void;
}