import type { User } from 'lucia'; import type { ApiClient } from '$lib/server/api'; import type { parseApiResponse } from '$lib/utils/api'; // See https://kit.svelte.dev/docs/types#app // for information about these interfaces // and what to do when importing types // src/app.d.ts declare global { namespace App { interface PageData { flash?: { type: 'success' | 'error' | 'info'; message: string; data?: Record; }; } interface Locals { api: ApiClient['api']; parseApiResponse: typeof parseApiResponse; getAuthedUser: () => Promise | null>; getAuthedUserOrThrow: () => Promise>; auth: import('lucia').AuthRequest; user: import('lucia').User | null; session: import('lucia').Session | null; startTimer: number; ip: string; country: string; error: string; errorId: string; errorStackTrace: string; message: unknown; track: unknown; } interface Error { code?: string; errorId?: string; } } interface Document { // eslint-disable-next-line @typescript-eslint/no-explicit-any // biome-ignore lint/suspicious/noExplicitAny: startViewTransition: (callback: never) => void; // Add your custom property/method here } } // THIS IS IMPORTANT!!! // biome-ignore lint/complexity/noUselessEmptyExport: // biome-ignore lint/style/useExportType: export {};