UNPKG

@bitblit/asyncglk

Version:
13 lines (12 loc) 273 B
export interface IFFChunk { data: Uint8Array; offset: number; type: string; } /** An Interchange File Format reader and writer */ export declare class IFF { type: string; chunks: IFFChunk[]; parse(data: Uint8Array): void; write(): Uint8Array; }