diff options
Diffstat (limited to 'src/lib/routes')
-rw-r--r-- | src/lib/routes/helpers.ts | 3 | ||||
-rw-r--r-- | src/lib/routes/router.ts | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/routes/helpers.ts b/src/lib/routes/helpers.ts index 03302da1a..0da885043 100644 --- a/src/lib/routes/helpers.ts +++ b/src/lib/routes/helpers.ts @@ -1,6 +1,5 @@ import {NavigationProp} from '@react-navigation/native' - -import {RouteParams, State} from './types' +import {State, RouteParams} from './types' export function getRootNavigation<T extends {}>( nav: NavigationProp<T>, diff --git a/src/lib/routes/router.ts b/src/lib/routes/router.ts index 45f9c85fd..8c8be3739 100644 --- a/src/lib/routes/router.ts +++ b/src/lib/routes/router.ts @@ -1,4 +1,4 @@ -import {Route, RouteParams} from './types' +import {RouteParams, Route} from './types' export class Router { routes: [string, Route][] = [] |