create-lestin
Version:
Creates a new project with Lestin
13 lines (10 loc) • 307 B
TypeScript
/* eslint-disable @typescript-eslint/naming-convention */
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_API_URL: string;
readonly VITE_IS_DEBUG_MODE: boolean;
readonly VITE_IS_LOCAL_DEV_MODE: boolean;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}