mirror of
https://github.com/GoogleChromeLabs/squoosh.git
synced 2025-11-13 17:27:09 +00:00
10 lines
295 B
TypeScript
10 lines
295 B
TypeScript
// import { EncodeOptions } from '../../src/codecs/webp/encoder-meta';
|
|
|
|
interface AVIFModule extends EmscriptenWasm.Module {
|
|
encode(data: BufferSource, width: number, height: number): Uint8Array;
|
|
free_result(): void;
|
|
}
|
|
|
|
|
|
export default function(opts: EmscriptenWasm.ModuleOpts): AVIFModule;
|