mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-19 16:43:32 +02:00
33 lines
676 B
TypeScript
33 lines
676 B
TypeScript
// See https://svelte.dev/docs/kit/types#app.d.ts
|
|
// for information about these interfaces
|
|
declare global {
|
|
namespace App {
|
|
// interface Error {}
|
|
// interface Locals {}
|
|
// interface PageData {}
|
|
// interface PageState {}
|
|
// interface Platform {}
|
|
}
|
|
}
|
|
|
|
// Environment variables declarations
|
|
declare module '$env/dynamic/public' {
|
|
export const env: {
|
|
PUBLIC_API_URL: string;
|
|
[key: string]: string | undefined;
|
|
};
|
|
}
|
|
|
|
declare module '$env/static/public' {
|
|
export const PUBLIC_VERSION: string;
|
|
export const PUBLIC_API_URL: string;
|
|
}
|
|
|
|
// Enhanced image module declarations
|
|
declare module '*?enhanced' {
|
|
const value: unknown;
|
|
export default value;
|
|
}
|
|
|
|
export {};
|