/** @codex-xmi-package-id d11a4827-d44f-50b1-841d-18678ea43962 */ /** * eDesign Runtime Host Monitor * */ /** @codex-xmi-id 6ffbc3eb-8c92-51ab-a511-e55bd7561a1f */ export declare class HostMonitor { cpu: number; memory: number; constructor(cpu: number, memory: number); } /** * eDesign Runtime Host Monitor * */ /** @codex-xmi-id 8a007782-4a7e-5f21-bd69-f4c101d81bed */ export declare class HostLog { message: string; constructor(message: string); } /** * eDesign Runtime Host Status * * @see https://developer.mozilla.org/en-US/docs/Web/API/WebSocket/readyState */ /** @codex-xmi-id cbd8cbda-34ab-508a-b9b0-832ee4a8ae73 */ export declare enum HostStatus { CONNECTING = "CONNECTING", OPEN = "OPEN", CLOSING = "CLOSING", CLOSED = "CLOSED" }