src/lib/shared/interfaces/filter-attribute.interface.ts
Is used to define a date range filter value.
Example :import { IDateRangeFilterValue } from '@talenra/inbox';
const dateRangeFilterValue: IDateRangeFilterValue = { start: new Date('01.14.2023'), end: new Date('01.14.2024') };
Properties |
| end |
end:
|
Type : Date | null
|
| Optional |
|
End value of the date range. |
| start |
start:
|
Type : Date | null
|
| Optional |
|
Start value of the date range. |