/** * Defines a system that can check the internet connection * * @export * @interface IConnectionChecker */ export interface IConnectionChecker { /** * Whether or not there is an active connection * * @returns {Promise} */ isConnected(): Promise; }