DateFilterType Type
Lists how the Date Filter range’s Start and End values can be interpreted to filter dates.
Declaration
export type DateFilterType = "Between" | "After" | "Before" | "Exact"
Members
| Name | Description |
|---|---|
| "Between" | Dates between the Start and the End dates. |
| "After" | Dates after the Start date. |
| "Before" | Dates before the End date. |
| "Exact" | A date equal to the End date. |
Remarks
Values listed in this type alias are used to set the DateFilterItem.filterType property.