UNPKG

gnablib

Version:

A lean, zero dependency library to provide a useful base for your project.

9 lines (8 loc) 265 B
/*! Copyright 2025 the gnablib contributors MPL-1.1 */ export declare abstract class AByteReader { protected _buff: Uint8Array; protected _ptr: number; protected constructor(_buff: Uint8Array); get unread(): number; skip(count: number): void; }