UNPKG

recyclerlistview

Version:

The listview that you need and deserve. It was built for performance, uses cell recycling to achieve smooth scrolling.

7 lines (6 loc) 277 B
export interface Scrollable { scrollToOffset(x: number, y: number, animate: boolean): void; } export declare class AutoScroll { static scrollNow(scrollable: Scrollable, fromX: number, fromY: number, toX: number, toY: number, speedMultiplier?: number): Promise<void>; }