interface IInput {
    data?: {
        limit?: null | number;
        matrixRoomId?: null | string;
        offset?: null | number;
    };
}

Properties

Properties

data?: {
    limit?: null | number;
    matrixRoomId?: null | string;
    offset?: null | number;
}

Type declaration

  • Optional limit?: null | number
  • Optional matrixRoomId?: null | string
  • Optional offset?: null | number