cal.pub0.org/packages/embeds/embed-core/env.d.ts

12 lines
259 B
TypeScript
Raw Normal View History

2022-03-31 08:45:47 +00:00
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly EMBED_PUBLIC_WEBAPP_URL: string;
readonly EMBED_PUBLIC_VERCEL_URL: string;
readonly EMBED_PUBLIC_EMBED_LIB_URL: string;
2022-03-31 08:45:47 +00:00
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}