2024-07-07 09:32:30 -06:00
|
|
|
declare module '*.svg' {
|
|
|
|
const value: string;
|
|
|
|
export default value;
|
|
|
|
}
|
2024-07-11 04:20:51 -06:00
|
|
|
|
|
|
|
declare let __webpack_public_path__: string;
|
|
|
|
|
|
|
|
interface Window {
|
|
|
|
config: import('./web_src/js/types.ts').Config;
|
|
|
|
$: typeof import('@types/jquery'),
|
|
|
|
jQuery: typeof import('@types/jquery'),
|
|
|
|
htmx: typeof import('htmx.org'),
|
2024-07-25 17:31:24 -06:00
|
|
|
_globalHandlerErrors: Array<ErrorEvent & PromiseRejectionEvent> & {
|
|
|
|
_inited: boolean,
|
|
|
|
push: (e: ErrorEvent & PromiseRejectionEvent) => void | number,
|
|
|
|
},
|
2024-07-11 04:20:51 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
declare module 'htmx.org/dist/htmx.esm.js' {
|
|
|
|
const value = await import('htmx.org');
|
|
|
|
export default value;
|
|
|
|
}
|