cronstrue
Version:
Convert cron expressions into human readable descriptions
12 lines (11 loc) • 325 B
TypeScript
export interface Options {
throwExceptionOnParseError?: boolean;
verbose?: boolean;
dayOfWeekStartIndexZero?: boolean;
monthStartIndexZero?: boolean;
use24HourTimeFormat?: boolean;
trimHoursLeadingZero?: boolean;
locale?: string | null;
logicalAndDayFields?: boolean;
tzOffset?: number;
}