mirror of
https://github.com/GoogleChromeLabs/squoosh.git
synced 2025-11-13 01:07:18 +00:00
9 lines
337 B
TypeScript
9 lines
337 B
TypeScript
export interface EncodeOptions { quality: number; }
|
|
export interface EncoderState { type: typeof type; options: EncodeOptions; }
|
|
|
|
export const type = 'browser-jpeg';
|
|
export const label = 'Browser JPEG';
|
|
export const mimeType = 'image/jpeg';
|
|
export const extension = 'jpg';
|
|
export const defaultOptions: EncodeOptions = { quality: 0.75 };
|