Files
Agent-n8n/n8n-n8n-1.109.2/packages/frontend/@n8n/stores/src/shims.d.ts
2025-09-08 04:48:28 +08:00

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;
}
}