20 lines
292 B
TypeScript
Executable File
20 lines
292 B
TypeScript
Executable File
/// <reference types="vite/client" />
|
|
|
|
export {};
|
|
|
|
declare global {
|
|
interface ImportMeta {
|
|
env: {
|
|
DEV: boolean;
|
|
PROD: boolean;
|
|
NODE_ENV: 'development' | 'production';
|
|
VUE_APP_URL_BASE_API: string;
|
|
};
|
|
}
|
|
|
|
interface Window {
|
|
BASE_PATH: string;
|
|
REST_ENDPOINT: string;
|
|
}
|
|
}
|