yunohost-admin/app/overrides.d.ts

23 lines
489 B
TypeScript
Raw Permalink Normal View History

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
}
2024-08-13 11:32:17 +02:00
interface BaseSize {
// `xs` size is available only for BButton
xs: unknown
}
}