mirror of
https://github.com/immich-app/immich.git
synced 2025-11-07 23:35:26 -05: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 {}
|
|
}
|