// Type definitions for ngCordova network plugin // Project: https://github.com/driftyco/ng-cordova // Definitions by: Kapil Sachdeva // Definitions: https://github.com/ksachdeva/DefinitelyTyped /// declare module ngCordova { export interface INetworkInformationService { getNetwork(): string; isOnline(): boolean; isOffline(): boolean; clearOfflineWatch(): void; clearOnlineWatch(): void; } }