// * Menu declare namespace Menu { interface MenuOptions { path: string; name: string; component?: string | (() => Promise); redirect?: string; meta: MetaProps; children?: MenuOptions[]; } interface MetaProps { icon: string; state: boolean; checkIcon: string; title: string; activeMenu?: string; isLink?: string; isHide: boolean; isFull: boolean; isAffix: boolean; isKeepAlive: boolean; } } // * Vite declare type Recordable = Record; declare interface ViteEnv { VITE_API_URL: string; VITE_PORT: number; VITE_OPEN: boolean; VITE_GLOB_APP_TITLE: string; VITE_DROP_CONSOLE: boolean; VITE_PROXY_URL: string; VITE_BUILD_GZIP: boolean; VITE_REPORT: boolean; }