21 lines
618 B
TypeScript
21 lines
618 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_API_URL: string;
|
|
readonly VITE_TOKEN_NAME: string;
|
|
readonly VITE_REFRESH_TOKEN_NAME: string;
|
|
readonly VITE_INVOICE_URL: string;
|
|
readonly VITE_LOGIN_URL: string;
|
|
readonly VITE_DESIGN_TIER_1_MAX: string;
|
|
readonly VITE_DESIGN_PRICE_TIER_1: string;
|
|
readonly VITE_DESIGN_TIER_2_MAX: string;
|
|
readonly VITE_DESIGN_PRICE_TIER_2: string;
|
|
readonly VITE_DESIGN_TIER_3_MAX: string;
|
|
readonly VITE_DESIGN_PRICE_TIER_3: string;
|
|
readonly VITE_DESIGN_PRICE_TIER_4: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|