/** * Elrest eDesign Runtime IPC Typescript Messages Instance * * @copyright 2024 Elrest Automations Systeme GMBH */ import { Log } from '../../Model/Instance/Log'; import { AbstractMessage } from '../AbstractMessage'; import { Type } from '../Type'; export declare class LogMessage extends AbstractMessage { type: Type; body: Array; }