2026-05-01 20:39:09 +08:00
|
|
|
import 'vue-router'
|
2026-04-01 00:58:42 +08:00
|
|
|
|
2026-05-01 20:39:09 +08:00
|
|
|
declare module 'vue-router' {
|
2026-04-01 00:58:42 +08:00
|
|
|
interface RouteMeta {
|
2026-05-01 20:39:09 +08:00
|
|
|
title?: string
|
|
|
|
|
description?: string
|
|
|
|
|
titleKey?: string
|
|
|
|
|
descriptionKey?: string
|
|
|
|
|
requiresAuth?: boolean
|
|
|
|
|
requiresKol?: boolean
|
2026-05-20 15:37:25 +08:00
|
|
|
onboarding?: boolean
|
2026-05-01 20:39:09 +08:00
|
|
|
navKey?: string | null
|
2026-04-01 00:58:42 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-01 20:39:09 +08:00
|
|
|
export {}
|