UNPKG

@expo/xdl

Version:
23 lines (22 loc) 466 B
interface ApiConfig { scheme: string; host: string; port: number | null; } interface XDLConfig { turtleApi: ApiConfig; api: ApiConfig; ngrok: { authToken: string; authTokenPublicId: string; domain: string; }; developerTool: string | null; validation: { reactNativeVersionWarnings: boolean; }; helpUrl: string; offline: boolean; } declare const config: XDLConfig; export default config;