cron-editor
Version:
A cron expression generator to be used in Angular applications
22 lines (21 loc) • 649 B
TypeScript
export interface CronOptions {
formInputClass: string;
formSelectClass: string;
formRadioClass: string;
formCheckboxClass: string;
defaultTime: string;
use24HourTime: boolean;
hideMinutesTab: boolean;
hideHourlyTab: boolean;
hideDailyTab: boolean;
hideWeeklyTab: boolean;
hideMonthlyTab: boolean;
hideYearlyTab: boolean;
hideAdvancedTab: boolean;
/** hides the Seconds UI form element */
hideSeconds: boolean;
/** removes Seconds from the Cron expression */
removeSeconds: boolean;
/** removes Years from the Cron expression */
removeYears: boolean;
}