Skip to content

Commit c3f7a3b

Browse files
committed
chore: fix types
1 parent fc69c11 commit c3f7a3b

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/router/types.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import type { RouteLocationNormalized } from 'vue-router'
2-
3-
export interface EnhancedRouteLocation extends RouteLocationNormalized {
4-
meta: {
5-
level?: number | unknown
6-
name?: string
7-
keepAlive?: boolean
8-
}
9-
}
1+
import type { RouteLocationNormalized } from 'vue-router'
2+
3+
export type EnhancedRouteLocation = RouteLocationNormalized & {
4+
meta: {
5+
level?: number | unknown
6+
name?: string
7+
keepAlive?: boolean
8+
}
9+
}

0 commit comments

Comments
 (0)