Files
squoosh/src/codecs/jxl/encoder-meta.ts
2020-02-06 15:58:38 -08:00

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 = {
};