projects/netgrif-components-core/src/lib/search/models/predicate-removal-event.ts
Holds information about a search predicate removal
Properties |
clearInput |
clearInput:
|
Type : boolean
|
Whether the corresponding search input should be cleared |
index |
index:
|
Type : number
|
Index of the removed predicate |
export interface PredicateRemovalEvent {
/**
* Index of the removed predicate
*/
index: number;
/**
* Whether the corresponding search input should be cleared
*/
clearInput: boolean;
}