@cause-911/core
Version:
Run `npm install @cause-911/core --save` to add this library to your project
11 lines (10 loc) • 315 B
TypeScript
import { EventEmitter } from '@angular/core';
import { Observable } from 'rxjs';
export declare class NetworkInformationService {
private estimates;
statusChange: EventEmitter<any>;
constructor();
getConnectionSpeed(): Observable<string>;
private estimateDownlink;
private onStatusChange;
}