UNPKG

ngx-ntk-cron-editor

Version:

Angular cron editor

23 lines (22 loc) 712 B
export interface CronOptionModel { 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; } export declare const defaultCronOptions: CronOptionModel;