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