mirror of
https://github.com/GoogleChromeLabs/squoosh.git
synced 2025-11-12 00:37:19 +00:00
8 lines
198 B
TypeScript
8 lines
198 B
TypeScript
interface AVIFModule extends EmscriptenWasm.Module {
|
|
decode(data: BufferSource): ImageData | null;
|
|
doLeakCheck(): void;
|
|
}
|
|
|
|
export default function(opts: EmscriptenWasm.ModuleOpts): AVIFModule;
|
|
|