Skip to content

Commit b181e7a

Browse files
committed
fix(types): router types fix for vue-router 3.3.3
Closes #374
1 parent e76ae2c commit b181e7a

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

packages/types/config/router.d.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@
55
* https://router.vuejs.org/api/#router-construction-options
66
*/
77

8-
import { RouterOptions, RouteConfig } from 'vue-router'
8+
import { RouterOptions, RouteConfig as _RouteConfig } from 'vue-router'
9+
10+
type UnionToIntersection<T> = (T extends any ? (k: T) => void : never) extends ((k: infer U) => void) ? U : never
11+
type RouteConfig = UnionToIntersection<_RouteConfig>
912

1013
export interface NuxtRouteConfig extends Pick<RouteConfig, Exclude<keyof RouteConfig, 'children' | 'component'>> {
1114
children?: NuxtRouteConfig[]

tsconfig.test.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"compilerOptions": {
3-
"target": "ESNext",
3+
"target": "ES6",
44
"lib": ["DOM", "ESNext"],
55
"module": "ESNext",
66
"moduleResolution": "Node",

0 commit comments

Comments
 (0)