@aws-amplify/core
Version:
Core category of aws-amplify
12 lines (11 loc) • 324 B
TypeScript
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 {};