Files
bsky-social-app/src/env.native.ts
T
2022-06-15 22:33:16 -05:00

9 lines
229 B
TypeScript

// @ts-ignore types not available -prf
import {REACT_APP_AUTH_LOBBY} from '@env'
if (typeof REACT_APP_AUTH_LOBBY !== 'string') {
throw new Error('ENV: No auth lobby provided')
}
export const AUTH_LOBBY = REACT_APP_AUTH_LOBBY