mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-31 18:59:36 +02:00
migration to new backend
This commit is contained in:
parent
28a5d423c2
commit
9abe9fb315
309 changed files with 21476 additions and 24132 deletions
24
frontend/src/app.d.ts
vendored
Normal file
24
frontend/src/app.d.ts
vendored
Normal file
|
@ -0,0 +1,24 @@
|
|||
// 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 {};
|
Loading…
Add table
Add a link
Reference in a new issue