Interface DailySchedule

DailySchedule describes a time of day ([[hourUTC]] and [[minuteUTC]]) at which a daily timer should fire.

interface DailySchedule {
    hourUTC?: number;
    minuteUTC?: number;
}

Properties

Properties

hourUTC?: number

The hour, in UTC, that the timer should fire.

minuteUTC?: number

The minute, in UTC, that the timer should fire.

Generated using TypeDoc