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 331 B
import { FunctionComponent } from 'react'; interface HourlyCronProp { onChange(e?: string[]): void; value: string[]; translate(e: string): string; disabled?: boolean; isUnix?: boolean; } declare const HourlyCron: FunctionComponent<HourlyCronProp>; export default HourlyCron; //# sourceMappingURL=hourly.d.ts.map