format files

This commit is contained in:
maxDorninger
2025-06-30 21:32:34 +02:00
parent 40a1bbf904
commit 3799ae8712
23 changed files with 144 additions and 83 deletions

19
web/src/app.d.ts vendored
View File

@@ -10,4 +10,23 @@ declare global {
}
}
// 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 {};