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

    Interface Holiday

    Holiday オブジェクトは日本の祝日1件を表します。

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

    祝日の日付。"YYYY-MM-DD" 形式。

    例: "2022-01-01"

    day_of_week: number

    曜日を表す数値。0 が日曜日、6 が土曜日。

    day_of_week_text: string

    曜日を英語の小文字で表したもの。

    例: "saturday"

    title: string

    祝日の名称。

    例: "元日"