UNPKG

@xmobitea/gn-typescript-client

Version:

GearN Typescript Client SDK by XmobiTea (Pro)

22 lines (21 loc) 548 B
interface InstanceResponse { instanceId: string; isPrimary: boolean; currentInstanceIdPrimary: string; currentTsPrimary: number; currentTsPrimaryToDate: string; tsPrimary: number; tsPrimaryToDate: string; } interface OtherInstanceResponse extends InstanceResponse { lostPing: number; } interface HealthCheckDataResponse { thisInstance: InstanceResponse; otherInstances: OtherInstanceResponse[]; } export declare class HealthCheckResponse { error: string; data?: HealthCheckDataResponse; } export {};