UNPKG

three-stdlib

Version:

stand-alone library of threejs examples

9 lines (8 loc) 239 B
/** * ZSTD (Zstandard) decoder. */ export declare class ZSTDDecoder { init(): Promise<void>; _init(result: WebAssembly.WebAssemblyInstantiatedSource): void; decode(array: Uint8Array, uncompressedSize?: number): Uint8Array; }