Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | import * as Types from "../types/index.ts"; export const handleScheduleExtractor = ( type: Types.ScheduleOptions, schedule: Types.ScheduleContractType, ) => { switch (type) { case Types.ScheduleOptions.ONE_OFF: return {}; case Types.ScheduleOptions.INTERVAL: return { duration: schedule.duration_in_seconds, interval: schedule.interval_in_seconds, timezone: schedule.timezone, }; case Types.ScheduleOptions.CRON: return { duration: schedule.duration_in_seconds, cron: schedule.rule, timezone: schedule.timezone, }; default: return {}; } }; |