mirror of
https://github.com/immich-app/immich.git
synced 2025-01-09 05:16:47 +01:00
33 lines
575 B
TypeScript
33 lines
575 B
TypeScript
|
/// <reference types="@sveltejs/kit" />
|
||
|
|
||
|
// See https://kit.svelte.dev/docs/types#app
|
||
|
// for information about these interfaces
|
||
|
declare namespace App {
|
||
|
interface Locals {
|
||
|
user?: {
|
||
|
id: string,
|
||
|
email: string,
|
||
|
accessToken: string,
|
||
|
firstName: string,
|
||
|
lastName: string,
|
||
|
isAdmin: boolean,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// interface Platform {}
|
||
|
|
||
|
interface Session {
|
||
|
user?: {
|
||
|
id: string,
|
||
|
email: string,
|
||
|
accessToken: string,
|
||
|
firstName: string,
|
||
|
lastName: string
|
||
|
isAdmin: boolean,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// interface Stuff {}
|
||
|
}
|
||
|
|