formcycle 8.3.6 - JavaScript for forms
    Preparing search index...

    Interface AppointmentMonthSlotData

    Data about the free slots of a particular month.

    interface AppointmentMonthSlotData {
        month: LocalMonthYear;
        slots: Readonly<Record<string, AppointmentDaySlotData>>;
    }
    Index

    Properties

    Properties

    Month and year of the slots.

    slots: Readonly<Record<string, AppointmentDaySlotData>>

    All free slots at the date. The key of the map is the date in the format yyyy-MM-dd, e.g. 2022-05-31.