17 lines
291 B
TypeScript
17 lines
291 B
TypeScript
import 'vue-router'
|
|
|
|
declare module 'vue-router' {
|
|
interface RouteMeta {
|
|
title?: string
|
|
description?: string
|
|
titleKey?: string
|
|
descriptionKey?: string
|
|
requiresAuth?: boolean
|
|
requiresKol?: boolean
|
|
onboarding?: boolean
|
|
navKey?: string | null
|
|
}
|
|
}
|
|
|
|
export {}
|