2022-05-21 02:23:55 -05:00
|
|
|
/// <reference types="@sveltejs/kit" />
|
|
|
|
|
|
|
|
// See https://kit.svelte.dev/docs/types#app
|
|
|
|
// for information about these interfaces
|
|
|
|
declare namespace App {
|
2023-07-01 00:50:47 -04:00
|
|
|
interface PageData {
|
|
|
|
meta: {
|
|
|
|
title: string;
|
|
|
|
description?: string;
|
|
|
|
imageUrl?: string;
|
|
|
|
};
|
|
|
|
}
|
2023-01-13 17:04:59 -05:00
|
|
|
|
2023-07-01 00:50:47 -04:00
|
|
|
interface Error {
|
|
|
|
message: string;
|
|
|
|
stack?: string;
|
|
|
|
code?: string | number;
|
|
|
|
}
|
2022-05-21 02:23:55 -05:00
|
|
|
}
|
2022-11-16 22:04:37 +01:00
|
|
|
|
2024-07-18 10:56:27 -05:00
|
|
|
declare module '$env/static/public' {
|
|
|
|
export const PUBLIC_IMMICH_PAY_HOST: string;
|
|
|
|
export const PUBLIC_IMMICH_BUY_HOST: string;
|
|
|
|
}
|
2024-08-06 15:34:17 +02:00
|
|
|
|
|
|
|
interface Element {
|
|
|
|
// Make optional, because it's unavailable on iPhones.
|
|
|
|
requestFullscreen?(options?: FullscreenOptions): Promise<void>;
|
|
|
|
}
|