@minko-fe/vite-config
Version:
13 lines (11 loc) • 331 B
TypeScript
/// <reference types="vite/client" />
declare enum Env {
development = "development",
test = "test",
production = "production"
}
declare function getEnv(): string;
declare function isDev(): boolean;
declare function isTest(): boolean;
declare function isProd(): boolean;
export { Env, getEnv, isDev, isProd, isTest };