Make webp compile

This commit is contained in:
Surma
2024-08-07 16:05:03 +01:00
parent dd290accc1
commit a0f9fea679
28 changed files with 6651 additions and 126 deletions

View File

@@ -0,0 +1,7 @@
export interface WebPModule extends EmscriptenWasm.Module {
decode(data: BufferSource): ImageData | null;
}
declare var moduleFactory: EmscriptenWasm.ModuleFactory<WebPModule>;
export default moduleFactory;