tablor-core
Version:
Core features for data tables, grids, and advanced search, pagination, and sorting in Angular.
11 lines (10 loc) • 365 B
TypeScript
import { ImmutableAugmentedItem } from '../stores/items-store/interfaces';
/***************** Event Payloads *****************/
/**
* Represents the payload for the `itemsSelectionChanged` event.
*
* @property items - The items that have been selected or deselected.
*/
export type ItemsSelectionChangedPayload<T> = {
items: ImmutableAugmentedItem<T>[];
};