UNPKG

@aws-amplify/core

Version:
12 lines (11 loc) 324 B
import Observable from 'zen-observable-ts'; type NetworkStatus = { online: boolean; }; export default class ReachabilityNavigator implements Reachability { networkMonitor(netInfo?: any): Observable<NetworkStatus>; } interface Reachability { networkMonitor(netInfo?: any): Observable<NetworkStatus>; } export {};