/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * @hidden
 * Scroll action scheduled after a new message is appended.
 * `author` — the local user sent the message; scroll fully to the bottom.
 * `receiver` — a remote message arrived while the user was near the bottom; scroll with threshold.
 */
export type PendingScrollAction = 'author' | 'receiver';
