mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
11 lines
245 B
TypeScript
11 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 {}
|
|
}
|