UNPKG

jessibuca

Version:
16 lines (10 loc) 339 B
class AudioDecoder { constructor(val: any); setCodec(atype: string, extra: string): void; decode(input: string, timestamp: number): void; clear(): void; }; export interface WASMModule extends EmscriptenModule { AudioDecoder: typeof AudioDecoder } export default function CreateModule(mod?: any): WASMModule;