mirror of
https://github.com/GoogleChromeLabs/squoosh.git
synced 2025-11-11 16:26:20 +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>;
|