src/lib/shared/interfaces/filter-attribute.interface.ts
FilterValue is used to correlate a filter value with a key and label. Enables the to display a label and identify the value by a key.
Example :import { ISelectionFilterValue } from '@talenra/inbox';
const filterValue: ISelectionFilterValue = { key: '8001', label: 'John Doe' };
Properties |
| key |
key:
|
Type : string
|
|
Key that identifies the value. |
| label |
label:
|
Type : string
|
|
Label that is displayed for the value. |