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