UNPKG

react-cron-generator

Version:

A powerful React component for building cron expressions with support for both Unix (5 fields) and Quartz (7 fields) formats. Features validation, format conversion, TypeScript support, and accessibility.

11 lines 341 B
import { FunctionComponent } from 'react'; interface WeeklyCronProp { onChange(e?: string[]): void; value: string[]; translate(e: string): string; disabled?: boolean; isUnix?: boolean; } declare const WeeklyCron: FunctionComponent<WeeklyCronProp>; export default WeeklyCron; //# sourceMappingURL=weekly.d.ts.map