mirror of
https://github.com/GoogleChromeLabs/squoosh.git
synced 2025-11-14 01:37:26 +00:00
8 lines
166 B
TypeScript
8 lines
166 B
TypeScript
interface HTMLImageElement {
|
|
decode: () => Promise<void> | undefined;
|
|
}
|
|
|
|
interface CanvasRenderingContext2D {
|
|
imageSmoothingQuality: 'low' | 'medium' | 'high';
|
|
}
|