14 lines
189 B
TypeScript
14 lines
189 B
TypeScript
|
declare module "#app" {
|
||
|
interface PageMeta {
|
||
|
allowedAccountTypes?: string[],
|
||
|
}
|
||
|
}
|
||
|
|
||
|
declare module "vue-router" {
|
||
|
interface RouteMeta {
|
||
|
allowedAccountTypes?: string[],
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export {}
|