import type { VNode, ComponentPublicInstance } from 'vue'; import type { PartialDeep } from 'type-fest'; import type { ExternalHooks } from '@/types/externalHooks'; 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; n8nExternalHooks?: PartialDeep; preventNodeViewBeforeUnload?: boolean; maxPinnedDataSize?: number; } namespace JSX { interface Element extends VNode {} interface ElementClass extends ComponentPublicInstance {} interface IntrinsicElements { [elem: string]: any; } } interface Array { findLast(predicate: (value: T, index: number, obj: T[]) => unknown, thisArg?: any): T; } }