@ckeditor/ckeditor5-ai
Version:
AI features for CKEditor 5.
24 lines (23 loc) • 646 B
TypeScript
/**
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
*/
/**
* The scroll manager for an element. Once started, it auto-scrolls to the bottom of the element as its
* children change unless the user interacts with the element.
*/
export declare class ScrollManager {
constructor(element: HTMLElement);
/**
* Starts the auto-scrolling.
*/
start(): void;
/**
* Stops the auto-scrolling.
*/
stop(): void;
/**
* Destroys the scroll manager.
*/
destroy(): void;
}