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

12 lines
221 B
TypeScript
Raw 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;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}