2025-06-30 18:58:24 +02:00
|
|
|
/*
|
|
|
|
SPDX-FileCopyrightText: © 2025 Hornwitser <code@hornwitser.no>
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
*/
|
2025-03-09 22:21:13 +01:00
|
|
|
declare module "#app" {
|
|
|
|
interface PageMeta {
|
|
|
|
allowedAccountTypes?: string[],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
declare module "vue-router" {
|
|
|
|
interface RouteMeta {
|
|
|
|
allowedAccountTypes?: string[],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export {}
|