From e20c88e1a09b3aaa8822baa89c83506de1b59a5e Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Tue, 19 May 2020 12:00:49 +0200 Subject: [PATCH] refactor: reorder errors in interface --- src/errors.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/errors.ts b/src/errors.ts index 1faa1363..885165b0 100644 --- a/src/errors.ts +++ b/src/errors.ts @@ -24,8 +24,8 @@ export interface MatcherError extends RouterErrorBase { } export enum NavigationFailureType { - cancelled = ErrorTypes.NAVIGATION_CANCELLED, aborted = ErrorTypes.NAVIGATION_ABORTED, + cancelled = ErrorTypes.NAVIGATION_CANCELLED, duplicated = ErrorTypes.NAVIGATION_DUPLICATED, } export interface NavigationFailure extends RouterErrorBase { -- 2.47.3