DateOnly: { day: number; month: number; year: number }

represents a Date without time components

Type declaration

  • Readonlyday: number

    day component of the date The day component is 1-based (1-31) The day component is validated based on the month and year For example, February 29 is only valid in leap years

  • Readonlymonth: number

    month component of the date 1-based (1-12) unlike JavaScript Date object which is 0-based

  • Readonlyyear: number

    year component of the date