yunohost-admin/app/overrides.d.ts
2024-08-13 11:56:35 +02:00

18 lines
399 B
TypeScript

import type { Skeleton } from '@/types/commons'
import 'vue-router'
declare module 'vue-router' {
interface RouteMeta {
noAuth?: boolean
routerParams?: string[]
args: { trad?: string; param?: string }
breadcrumb?: string[]
skeleton?: (Skeleton | string)[] | Skeleton | string
}
}
declare module 'bootstrap-vue-next' {
interface BaseColorVariant {
best: unknown
}
}