/// declare module '*.wasm?url' { const url: string; export default url; } declare module '*.worker.ts' { class WebpackWorker extends Worker { constructor(); } export default WebpackWorker; } interface ImportMetaEnv { readonly VITE_APP_TITLE: string; } interface ImportMeta { readonly env: ImportMetaEnv; } declare global { interface Window { fs?: { readFile: (path: string, options?: { encoding?: string }) => Promise; }; } }