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.

9 lines 322 B
import { ChangeEvent, FunctionComponent } from 'react'; interface MinutesSelectProp { disabled?: boolean; onChange(event: ChangeEvent<HTMLSelectElement>): void; value: string; } declare const MinutesSelect: FunctionComponent<MinutesSelectProp>; export default MinutesSelect; //# sourceMappingURL=index.d.ts.map