mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-20 15:55:42 +02:00
format files
This commit is contained in:
19
web/src/ambient.d.ts
vendored
Normal file
19
web/src/ambient.d.ts
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
// Ambient module declarations for SvelteKit environment variables and enhanced images
|
||||
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user