14 lines
274 B
TypeScript
14 lines
274 B
TypeScript
interface ImportMetaEnv {
|
|
readonly VITE_API_BASE_URL?: string;
|
|
readonly VITE_CSRF_COOKIE_NAME?: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|
|
|
|
declare module "virtual:govoplan-installed-modules" {
|
|
const modules: any[];
|
|
export default modules;
|
|
}
|