/** * Cron day of week string value (SUN-SAT). */ export type CronDayOfWeekValueString = | "FRI" | "MON" | "SAT" | "SUN" | "THU" | "TUE" | "WED";