/** * Elrest eDesign Runtime IPC Typescript Messages Script * * @copyright 2024 Elrest Automations Systeme GMBH */ import { Entry } from '../../Model/Filesystem'; import { AbstractMessage } from './../AbstractMessage'; import { Type } from './../Type'; /** @codex-xmi-id 4b81dcf4-2cf7-5de9-95d3-1327c0d6f04c */ export declare class SaveResponse extends AbstractMessage { type: Type; body: Entry; }