Type Alias: DateAfter
DateAfter = {
after
:Date
; }
Defined in: src/types/shared.ts:195
Match a day falling after the specified date (exclusive).
Example
// Match days after February 2, 2019
const matcher: DateAfter = { after: new Date(2019, 1, 2) };
Properties
after
after:
Date
Defined in: src/types/shared.ts:195