This repository has been archived on 2024-01-12. You can view files and clone it, but cannot push or open issues or pull requests.
summer-ui/src/vite-env.d.ts
MrMelon54 db8ed96b71
All checks were successful
continuous-integration/drone/push Build is passing
Use css vars for colour themes
2022-10-24 17:51:30 +01:00

13 lines
254 B
TypeScript

/// <reference types="svelte" />
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_API_URL: string;
readonly VITE_TITLE: string;
readonly VITE_CSS_VAR: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}