mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
17 lines
388 B
TypeScript
17 lines
388 B
TypeScript
import 'vue-router'
|
|
|
|
declare module 'vuex' {
|
|
export * from 'vuex/types/index.d.ts'
|
|
export * from 'vuex/types/helpers.d.ts'
|
|
export * from 'vuex/types/logger.d.ts'
|
|
export * from 'vuex/types/vue.d.ts'
|
|
}
|
|
|
|
declare module 'vue-router' {
|
|
interface RouteMeta {
|
|
noAuth?: boolean
|
|
routerParams?: string[]
|
|
args: { trad?: string; param?: string }
|
|
breadcrumb?: string[]
|
|
}
|
|
}
|