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