Type Alias: DateAfter
DateAfter: {
after
:Date
; }
Defined in: src/types/shared.ts:231
Match a day falling after the specified date, with the date not included.
Type declaration
Name | Type |
---|---|
after | Date |
Example
// Match days after the 2nd of February 2019
const matcher: DateAfter = { after: new Date(2019, 1, 2) };