We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c105f31 commit e87df64Copy full SHA for e87df64
types/router.d.ts
@@ -54,7 +54,7 @@ type Component<T = any> =
54
| (() => Promise<T>)
55
56
declare global {
57
- declare interface AppRouteRecordRaw extends Omit<RouteRecordRaw, 'meta'> {
+ interface AppRouteRecordRaw extends Omit<RouteRecordRaw, 'meta'> {
58
name: string
59
meta: RouteMeta
60
component?: Component | string
@@ -64,7 +64,7 @@ declare global {
64
keepAlive?: boolean
65
}
66
67
- declare interface AppCustomRouteRecordRaw extends Omit<RouteRecordRaw, 'meta'> {
+ interface AppCustomRouteRecordRaw extends Omit<RouteRecordRaw, 'meta'> {
68
icon: any
69
70
0 commit comments