/** * Configuration for auto-scrolling. * * @public */ export interface IAutoScrollConfig { /** * Distance from edge to trigger scroll (in pixels). * * @defaultValue 50 */ threshold?: number; /** * Maximum scroll speed (pixels per frame). * * @defaultValue 10 */ maxSpeed?: number; /** * Whether to enable auto-scrolling. * * @defaultValue true */ enabled?: boolean; } //# sourceMappingURL=AutoScrollHandler.d.ts.map