mirror of
https://github.com/GoogleChromeLabs/squoosh.git
synced 2025-11-12 08:47:31 +00:00
7 lines
175 B
TypeScript
7 lines
175 B
TypeScript
interface AVIFModule extends EmscriptenWasm.Module {
|
|
decode(data: BufferSource): ImageData | null;
|
|
}
|
|
|
|
export default function(opts: EmscriptenWasm.ModuleOpts): AVIFModule;
|
|
|