mirror of
https://github.com/GoogleChromeLabs/squoosh.git
synced 2025-11-12 00:37:19 +00:00
6 lines
183 B
TypeScript
6 lines
183 B
TypeScript
interface WebPModule extends EmscriptenWasm.Module {
|
|
decode(data: BufferSource): ImageData | null;
|
|
}
|
|
|
|
export default function(opts: EmscriptenWasm.ModuleOpts): Promise<WebPModule>;
|