mirror of
https://github.com/immich-app/immich.git
synced 2024-12-26 10:50:29 +02:00
12 lines
245 B
TypeScript
12 lines
245 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?: import('@api').UserResponseDto;
|
|
}
|
|
|
|
// interface Platform {}
|
|
}
|