@ken-all/kenall
    Preparing search index...

    Interface Holiday

    A Holiday object represents a single public holiday in Japan.

    interface Holiday {
        date: string;
        day_of_week: number;
        day_of_week_text: string;
        title: string;
    }
    Index
    date: string

    The date of the holiday, in the form of "YYYY-MM-DD".

    Example: "2022-01-01"

    day_of_week: number

    The day of the week, represented as a number where 0 is Sunday and 6 is Saturday.

    day_of_week_text: string

    The day of the week, spelled out in lowercase English.

    Example: "saturday"

    title: string

    The name of the holiday.

    Example: "元日"