mirror of
https://github.com/GoogleChromeLabs/squoosh.git
synced 2025-11-13 17:27:09 +00:00
7 lines
184 B
TypeScript
7 lines
184 B
TypeScript
interface AVIFModule extends EmscriptenWasm.Module {
|
|
decode(data: BufferSource): ImageData | null;
|
|
}
|
|
|
|
export default function(opts: EmscriptenWasm.ModuleOpts): Promise<AVIFModule>;
|
|
|