mirror of
https://github.com/GoogleChromeLabs/squoosh.git
synced 2025-11-17 11:09:41 +00:00
9 lines
290 B
TypeScript
9 lines
290 B
TypeScript
import { EncodeOptions } from '../../src/codecs/jxl/encoder-meta';
|
|
|
|
interface JXLModule extends EmscriptenWasm.Module {
|
|
encode(data: BufferSource, width: number, height: number, options: EncodeOptions): Uint8Array;
|
|
}
|
|
|
|
|
|
export default function(opts: EmscriptenWasm.ModuleOpts): JXLModule;
|