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.
Example
// Match days after the 2nd of February 2019
const matcher: DateAfter = { after: new Date(2019, 1, 2) };
Properties
after
after:
Date
Defined in: src/types/shared.ts:231