import * as Linking from 'expo-linking'; import { ScreensPath } from '../enum'; const prefix = Linking.createURL('/'); export const linking = { prefixes: [prefix], config: { screens: { Landing: { path: ScreensPath.Landing, parse: { accessToken: String, refreshToken: String, }, }, MagicLinkConfirm: { path: ScreensPath.MagicLinkConfirm, parse: { accessToken: String, refreshToken: String, }, }, }, }, };