/** * Elrest eDesign Runtime IPC Typescript Model Pagination Request * * @copyright 2024 Elrest Automations Systeme GMBH */ export declare class Request { offset: number; limit: number; static readonly DEFAULT_OFFSET: number; static readonly DEFAULT_LIMIT: number; static readonly DEFAULT_NOLIMIT: number; constructor(offset?: number, limit?: number); }