mirror of
https://github.com/GoogleChromeLabs/squoosh.git
synced 2025-11-15 10:09:45 +00:00
13 lines
345 B
TypeScript
13 lines
345 B
TypeScript
export interface EncodeOptions {
|
|
}
|
|
|
|
export interface EncoderState { type: typeof type; options: EncodeOptions; }
|
|
|
|
export const type = 'jxl';
|
|
export const label = 'JPEG XL';
|
|
export const mimeType = 'image/jpegxl';
|
|
export const extension = 'jxl';
|
|
// These come from struct WebPConfig in encode.h.
|
|
export const defaultOptions: EncodeOptions = {
|
|
};
|