export declare enum PING_RESULT_TYPE { ERROR = 0, SUCCEEDS = 1 } export interface PING_RESULT { result: PING_RESULT_TYPE; e?: any; } export declare class HttpRestConnection { constructor(); ping: (_url: string) => Promise; } //# sourceMappingURL=HttpRestConnection.d.ts.map