UNPKG

gnablib

Version:

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

10 lines (9 loc) 289 B
/*! Copyright 2025 the gnablib contributors MPL-1.1 */ export declare abstract class AByteWriter { protected _buff: Uint8Array; protected _ptr: number; protected constructor(_buff: Uint8Array); get full(): boolean; get space(): number; skip(count: number): void; }