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

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