436a9631fc
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
7 lines
209 B
TypeScript
7 lines
209 B
TypeScript
export default abstract class FormatBase {
|
|
protected readonly view: DataView;
|
|
protected constructor(view: DataView);
|
|
copyTo(bin: ArrayBuffer, offset: number): void;
|
|
get byteLength(): number;
|
|
}
|