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) • 505 B
TypeScript
/**
* Methods for selecting list items.
* @link https://github.com/DjonnyX/ng-virtual-list/blob/16.x/projects/ng-virtual-list/src/lib/enums/method-for-selecting-types.ts
* @author Evgenii Grebennikov
* @email djonnyx@gmail.com
*/
export declare enum MethodsForSelectingTypes {
/**
* List items are not selectable.
*/
NONE = 0,
/**
* List items are selected one by one.
*/
SELECT = 1,
/**
* Multiple selection of list items.
*/
MULTI_SELECT = 2
}