1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-29 17:59:36 +02:00
AdventureLog/frontend/src/app.d.ts

25 lines
505 B
TypeScript
Raw Normal View History

2024-07-08 11:44:39 -04:00
// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
declare global {
namespace App {
// interface Error {}
interface Locals {
user: {
pk: number;
username: string;
first_name: string | null;
last_name: string | null;
email: string | null;
date_joined: string | null;
is_staff: boolean;
profile_pic: string | null;
} | null;
}
// interface PageData {}
// interface PageState {}
// interface Platform {}
}
}
export {};