UNPKG

ng-virtual-list

Version:

🚀 High-performance virtual scrolling for Angular apps. Render 100,000+ items in Angular without breaking a sweat. Smooth, customizable, and developer-friendly.

21 lines (20 loc) • 520 B
/** * Methods for selecting list items. * @link https://github.com/DjonnyX/ng-virtual-list/blob/16.x/projects/ng-virtual-list/src/lib/enums/methods-for-selecting.ts * @author Evgenii Grebennikov * @email djonnyx@gmail.com */ export declare enum MethodsForSelecting { /** * List items are not selectable. */ NONE = "none", /** * List items are selected one by one. */ SELECT = "select", /** * Multiple selection of list items. */ MULTI_SELECT = "multi-select" }