UNPKG

ng-hub-ui-board

Version:

An Angular-based Kanban board component with Trello-like drag-and-drop, customizable columns, and straightforward event handling.

9 lines (8 loc) 244 B
/** * Interface representing an event triggered when reaching the end of a board column. * @template T - The type of the data being paginated. Defaults to any. */ export interface ReachedEndEvent<T = any> { index: number; data: T; }