gnablib
Version:
A lean, zero dependency library to provide a useful base for your project.
12 lines (11 loc) • 405 B
TypeScript
/*! Copyright 2025 the gnablib contributors MPL-1.1 */
import { AByteReader } from './_AByteReader.js';
declare const consoleDebugSymbol: unique symbol;
export declare class ByteReader extends AByteReader {
read(count: number): Uint8Array;
rest(): Uint8Array;
get [Symbol.toStringTag](): string;
[consoleDebugSymbol](): string;
static mount(buff: Uint8Array): ByteReader;
}
export {};