UNPKG

289 BPlain TextView Raw
1export default {
2 reachabilityUrl: '/',
3 reachabilityTest: (response: Response): Promise<boolean> =>
4 Promise.resolve(response.status === 200),
5 reachabilityShortTimeout: 5 * 1000, // 5s
6 reachabilityLongTimeout: 60 * 1000, // 60s
7 reachabilityRequestTimeout: 15 * 1000, // 15s
8};