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

15 lines
328 B
TypeScript
Raw Permalink Normal View History

2022-10-10 10:46:23 +01:00
/// <reference types="svelte" />
/// <reference types="vite/client" />
2022-10-17 00:13:41 +01:00
interface ImportMetaEnv {
readonly VITE_API_URL: string;
readonly VITE_TITLE: string;
2022-10-24 17:51:30 +01:00
readonly VITE_CSS_VAR: string;
2022-12-09 10:26:03 +00:00
readonly VITE_LINK_TERMS: string;
readonly VITE_LINK_PRIVACY: string;
2022-10-17 00:13:41 +01:00
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}