mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
16 lines
294 B
TypeScript
16 lines
294 B
TypeScript
import 'vue-router'
|
|
|
|
declare module 'vue-router' {
|
|
interface RouteMeta {
|
|
noAuth?: boolean
|
|
routerParams?: string[]
|
|
args: { trad?: string; param?: string }
|
|
breadcrumb?: string[]
|
|
}
|
|
}
|
|
|
|
declare module 'bootstrap-vue-next' {
|
|
interface BaseColorVariant {
|
|
best: unknown
|
|
}
|
|
}
|