We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c446f0 commit adb3532Copy full SHA for adb3532
types/router.d.ts
@@ -61,6 +61,17 @@ export declare class VueRouter {
61
}
62
63
static install: PluginFunction<never>
64
+ static version: string
65
+
66
+ static isRouterError: (error: any, type?: NavigationFailureTypeE) => error is Error
67
+ static NavigationFailureType: NavigationFailureTypeE
68
+}
69
70
+export enum NavigationFailureTypeE {
71
+ redirected = 1,
72
+ aborted = 2,
73
+ cancelled = 3,
74
+ duplicated = 4
75
76
77
type Position = { x: number; y: number }
0 commit comments