src/lib/shared/interfaces/filter-attribute.interface.ts
Is used to define a character range filter value.
Example :import { ICharRangeFilterValue } from '@talenra/inbox';
const charRangeFilterValue: ICharRangeFilterValue = { start: 'AR', end: 'JAB' };
Properties |
| end |
end:
|
Type : string
|
| Optional |
|
End value of the character range. |
| start |
start:
|
Type : string
|
| Optional |
|
Start value of the character range. |