@progress/kendo-angular-conversational-ui
Version:
Kendo UI for Angular Conversational UI components
19 lines (18 loc) • 753 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Arguments for the `loadMore` event of the Chat.
* Fires when the user scrolls near the edge of the rendered message window in endless scroll mode.
*/
export interface ChatLoadMoreEvent {
/**
* The inclusive start index into the full messages array.
*/
startIndex: number;
/**
* The exclusive end index into the full messages array.
*/
endIndex: number;
}