mirror of
https://github.com/BradNut/boredgame
synced 2025-09-08 17:40:22 +00:00
52 lines
1.4 KiB
TypeScript
52 lines
1.4 KiB
TypeScript
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<string, unknown>;
|
|
};
|
|
}
|
|
interface Locals {
|
|
api: ApiClient['api'];
|
|
parseApiResponse: typeof parseApiResponse;
|
|
getAuthedUser: () => Promise<Returned<User> | null>;
|
|
getAuthedUserOrThrow: () => Promise<Returned<User>>;
|
|
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: <explanation>
|
|
startViewTransition: (callback: never) => void; // Add your custom property/method here
|
|
}
|
|
}
|
|
|
|
// THIS IS IMPORTANT!!!
|
|
// biome-ignore lint/complexity/noUselessEmptyExport: <explanation>
|
|
// biome-ignore lint/style/useExportType: <explanation>
|
|
export {};
|