/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Defines the scroll behavior of the Chat message list.
 *
 * - `scrollable`&mdash;All messages are rendered with standard scroll behavior.
 * - `endless`&mdash;The Chat starts by rendering the last `pageSize` messages
 *   and prepends older ones as the user scrolls up.
 */
export type ScrollMode = 'scrollable' | 'endless';
