mirror of
https://github.com/GoogleChromeLabs/squoosh.git
synced 2025-11-17 11:09:41 +00:00
* WIP: wasm-bindgen-rayon and new OMT plugin * Bump package-lock * Make OMT work again * Update year * Restore accidental change * Prevent minification of `nextDefineUri` * Delay loading external deps This gives inline `define` calls a chance to define dependencies for earlier `define` calls on the same page. * Add comment
62 lines
1.8 KiB
TypeScript
Generated
62 lines
1.8 KiB
TypeScript
Generated
/* tslint:disable */
|
|
/* eslint-disable */
|
|
/**
|
|
* @param {Uint8Array} data
|
|
* @param {number} level
|
|
* @returns {Uint8Array}
|
|
*/
|
|
export function optimise(data: Uint8Array, level: number): Uint8Array;
|
|
/**
|
|
* @param {number} num_threads
|
|
* @returns {Promise<any>}
|
|
*/
|
|
export function initThreadPool(num_threads: number): Promise<any>;
|
|
/**
|
|
* @param {number} receiver
|
|
*/
|
|
export function wbg_rayon_start_worker(receiver: number): void;
|
|
/**
|
|
*/
|
|
export class wbg_rayon_PoolBuilder {
|
|
free(): void;
|
|
/**
|
|
* @returns {number}
|
|
*/
|
|
numThreads(): number;
|
|
/**
|
|
* @returns {number}
|
|
*/
|
|
receiver(): number;
|
|
/**
|
|
*/
|
|
build(): void;
|
|
}
|
|
|
|
export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembly.Module;
|
|
|
|
export interface InitOutput {
|
|
readonly optimise: (a: number, b: number, c: number, d: number) => void;
|
|
readonly __wbg_wbg_rayon_poolbuilder_free: (a: number) => void;
|
|
readonly wbg_rayon_poolbuilder_numThreads: (a: number) => number;
|
|
readonly wbg_rayon_poolbuilder_receiver: (a: number) => number;
|
|
readonly wbg_rayon_poolbuilder_build: (a: number) => void;
|
|
readonly initThreadPool: (a: number) => number;
|
|
readonly wbg_rayon_start_worker: (a: number) => void;
|
|
readonly __wbindgen_export_0: WebAssembly.Memory;
|
|
readonly __wbindgen_add_to_stack_pointer: (a: number) => number;
|
|
readonly __wbindgen_malloc: (a: number) => number;
|
|
readonly __wbindgen_free: (a: number, b: number) => void;
|
|
readonly __wbindgen_start: () => void;
|
|
}
|
|
|
|
/**
|
|
* If `module_or_path` is {RequestInfo} or {URL}, makes a request and
|
|
* for everything else, calls `WebAssembly.instantiate` directly.
|
|
*
|
|
* @param {InitInput | Promise<InitInput>} module_or_path
|
|
* @param {WebAssembly.Memory} maybe_memory
|
|
*
|
|
* @returns {Promise<InitOutput>}
|
|
*/
|
|
export default function init (module_or_path?: InitInput | Promise<InitInput>, maybe_memory?: WebAssembly.Memory): Promise<InitOutput>;
|