/** * Elrest eDesign Runtime Library Messages Model Host * * @copyright 2024 Elrest AutomationsSysteme GMBH */ /** * eDesign Runtime Host Monitor * */ export declare class HostMonitor { cpu: number; memory: number; constructor(cpu: number, memory: number); } /** * eDesign Runtime Host Monitor * */ 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 */ export declare enum HostStatus { CONNECTING = "CONNECTING", OPEN = "OPEN", CLOSING = "CLOSING", CLOSED = "CLOSED" }