(options: IntervalOptions)
| 77 | * @param options An object containing options about the interval. |
| 78 | */ |
| 79 | export function intervalTrigger(options: IntervalOptions) { |
| 80 | return new IntervalTrigger(options); |
| 81 | } |
| 82 | |
| 83 | export class CronTrigger implements Trigger<ScheduledEventSpecification> { |
| 84 | constructor(private options: CronOptions) {} |
no outgoing calls
no test coverage detected
searching dependent graphs…