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.
11 lines (10 loc) • 481 B
TypeScript
import { SnappingMethods } from "./snapping-methods";
/**
* Snapping method.
* 'normal' - Normal group rendering.
* 'advanced' - The group is rendered on a transparent background. List items below the group are not rendered.
* @link https://github.com/DjonnyX/ng-virtual-list/blob/16.x/projects/ng-virtual-list/src/lib/enums/snapping-method.ts
* @author Evgenii Grebennikov
* @email djonnyx@gmail.com
*/
export type SnappingMethod = SnappingMethods | 'normal' | 'advanced';