Type Alias: DateInput
DateInput =
Date|string
Accepted date input: a Date object or an ISO date string.
Example
const d1: DateInput = new Date(2024, 0, 15);
const d2: DateInput = '2024-01-15';
DateInput =
Date|string
Accepted date input: a Date object or an ISO date string.
const d1: DateInput = new Date(2024, 0, 15);
const d2: DateInput = '2024-01-15';