/*--------------------------------------------------------------------------------------------- * Copyright (c) Dolittle. All rights reserved. * Licensed under the MIT License. See LICENSE in the project root for license information. *--------------------------------------------------------------------------------------------*/ /** * 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 }