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