AniLink - v1.29.2
    Preparing search index...

    Type Alias FuzzyDateInput

    FuzzyDateInput is a type representing a fuzzy date input. It includes the year, month, and day each having their own optional properties.

    type FuzzyDateInput = {
        day: number;
        month: number;
        year: number;
    }
    Index
    day: number

    day is an optional number representing the day of the fuzzy date input.

    month: number

    month is an optional number representing the month of the fuzzy date input.

    year: number

    year is an optional number representing the year of the fuzzy date input.