FuzzyDate is an interface representing a fuzzy date. It includes the year, month, and day each having their own properties.

interface FuzzyDate {
    day: number;
    month: number;
    year: number;
}

Properties

Properties

day: number

day is a number representing the day of the fuzzy date.

month: number

month is a number representing the month of the fuzzy date.

year: number

year is a number representing the year of the fuzzy date.