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, 3 insertions, 2 deletions
diff --git a/src/lib/routes/helpers.ts b/src/lib/routes/helpers.ts index 0da885043..03302da1a 100644 --- a/src/lib/routes/helpers.ts +++ b/src/lib/routes/helpers.ts @@ -1,5 +1,6 @@ import {NavigationProp} from '@react-navigation/native' -import {State, RouteParams} from './types' + +import {RouteParams, State} 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 8c8be3739..45f9c85fd 100644 --- a/src/lib/routes/router.ts +++ b/src/lib/routes/router.ts @@ -1,4 +1,4 @@ -import {RouteParams, Route} from './types' +import {Route, RouteParams} from './types' export class Router { routes: [string, Route][] = [] |