AniLink - v1.29.2
    Preparing search index...

    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;
    }
    Index
    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.