import type { AniList } from '$lib/AniList'; import 'bun-types'; // See https://kit.svelte.dev/docs/types#app // for information about these interfaces declare global { namespace App { // interface Error {} interface Locals { user: AniList; } // interface PageData {} // interface Platform {} } const umami: { track: (event_name: string, event_data?: Record) => void; }; } export {};