mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 16:23:06 +10:00
11 lines
186 B
TypeScript
11 lines
186 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_APP_TITLE: string;
|
|
// more env variables...
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|