mirror of
https://github.com/GoogleChromeLabs/squoosh.git
synced 2025-11-12 08:47:31 +00:00
* Startup optimisations * I hate this file * Inline main script * Reverting change to do a fairer perf comparison * Inlining again. Weeeeee! * Lockfile
23 lines
406 B
TypeScript
23 lines
406 B
TypeScript
declare const __webpack_public_path__: string;
|
|
declare const PRERENDER: boolean;
|
|
|
|
declare interface NodeModule {
|
|
hot: any;
|
|
}
|
|
|
|
declare interface Window {
|
|
STATE: any
|
|
}
|
|
|
|
declare namespace JSX {
|
|
interface Element { }
|
|
interface IntrinsicElements { }
|
|
interface HTMLAttributes {
|
|
decoding?: string;
|
|
}
|
|
}
|
|
|
|
declare module 'classnames' {
|
|
export default function classnames(...args: any[]): string;
|
|
}
|