mirror of
https://github.com/GoogleChromeLabs/squoosh.git
synced 2025-11-17 19:19:47 +00:00
12 lines
223 B
TypeScript
12 lines
223 B
TypeScript
declare module 'preact' {
|
|
namespace JSX {
|
|
interface HTMLAttributes {
|
|
decoding?: 'sync' | 'async' | 'auto';
|
|
}
|
|
}
|
|
}
|
|
|
|
// Thing break unless this file is a module.
|
|
// Don't ask me why. I don't know.
|
|
export {};
|