Type Alias ScheduleInterval

For example, an every of 1 hour with offset of zero would match every hour, on the hour. The same every but an offset of 19 minutes would match every xx:19:00.

type ScheduleInterval = {
    every: string;
    offset?: string;
}
Index

Properties

Properties

every: string

The period to repeat the interval

offset?: string

A fixed offset added to the intervals period. Optional, defaults to 0