Interface UserSchedule

interface UserSchedule {
    from: {
        day: number;
        month: number;
    };
    to: {
        day: number;
        month: number;
    };
}

Properties

Properties

from: {
    day: number;
    month: number;
}

The date from which to start the simulation

Type declaration

  • day: number

    The day of the month, starting at 1

  • month: number

    The month of the year, starting at 1

to: {
    day: number;
    month: number;
}

The date on which to end the simulation

Type declaration

  • day: number

    The day of the month, starting at 1

  • month: number

    The month of the year, starting at 1