right-angled
Version:
Lightweight and easy to use angular data grids. Integrates with your markup and styles rather than generating its own.
15 lines • 528 B
TypeScript
import { EventEmitter } from '@angular/core';
export interface RTSelectionEvent {
item: any;
index: number;
}
export interface SelectionEventsEmitter {
itemSelected: EventEmitter<RTSelectionEvent>;
itemDeselected: EventEmitter<RTSelectionEvent>;
selectionChanged: EventEmitter<RTSelectionEvent>;
}
export interface SelectionElementEventsEmitter extends SelectionEventsEmitter {
selected: boolean;
postProcessSelection(selected: boolean): void;
}
//# sourceMappingURL=selection-events-emitter.d.ts.map