// this file is generated — do not edit it declare module "svelte/elements" { export interface HTMLAttributes { 'data-sveltekit-keepfocus'?: true | '' | 'off' | undefined | null; 'data-sveltekit-noscroll'?: true | '' | 'off' | undefined | null; 'data-sveltekit-preload-code'?: | true | '' | 'eager' | 'viewport' | 'hover' | 'tap' | 'off' | undefined | null; 'data-sveltekit-preload-data'?: true | '' | 'hover' | 'tap' | 'off' | undefined | null; 'data-sveltekit-reload'?: true | '' | 'off' | undefined | null; 'data-sveltekit-replacestate'?: true | '' | 'off' | undefined | null; } } export {}; declare module "$app/types" { export interface AppTypes { RouteId(): "/" | "/access-denied" | "/accounts" | "/accounts/new" | "/accounts/[id]" | "/api" | "/api/files" | "/api/files/[...path]" | "/api/toggle-darkmode" | "/items" | "/items/[id]" | "/login" | "/logout" | "/receipts" | "/receipts/new" | "/receipts/[id]" | "/transactions" | "/transactions/new" | "/transactions/[id]"; RouteParams(): { "/accounts/[id]": { id: string }; "/api/files/[...path]": { path: string }; "/items/[id]": { id: string }; "/receipts/[id]": { id: string }; "/transactions/[id]": { id: string } }; LayoutParams(): { "/": { id?: string; path?: string }; "/access-denied": Record; "/accounts": { id?: string }; "/accounts/new": Record; "/accounts/[id]": { id: string }; "/api": { path?: string }; "/api/files": { path?: string }; "/api/files/[...path]": { path: string }; "/api/toggle-darkmode": Record; "/items": { id?: string }; "/items/[id]": { id: string }; "/login": Record; "/logout": Record; "/receipts": { id?: string }; "/receipts/new": Record; "/receipts/[id]": { id: string }; "/transactions": { id?: string }; "/transactions/new": Record; "/transactions/[id]": { id: string } }; Pathname(): "/" | "/accounts" | "/accounts/new" | `/accounts/${string}` & {} | `/api/files/${string}` & {} | "/items" | `/items/${string}` & {} | "/login" | "/logout" | "/receipts" | "/receipts/new" | `/receipts/${string}` & {} | "/transactions" | "/transactions/new" | `/transactions/${string}` & {}; ResolvedPathname(): `${"" | `/${string}`}${ReturnType}`; Asset(): "/icon.svg" | "/manifest.webmanifest" | string & {}; } }