/* eslint-disable @typescript-eslint/no-explicit-any */ /// /// /// import 'vue-router' declare module '*.vue' { import type { DefineComponent } from 'vue' const component: DefineComponent<{}, {}, any> export default component } declare module 'vue-router' { interface RouteMeta { i18nKey: string icon?: string } } declare module '*.json' { const jsonValue: any export default jsonValue } declare module 'virtual:*' { const result: any export default result }