UNPKG

react-cron-generator

Version:
18 lines (17 loc) 485 B
import React from 'react'; import { HeaderKeyType } from './meta'; import './cron-builder.css'; export interface CronProp { value?: string; onChange(val: string, text: string): void; showResultText: boolean; showResultCron: boolean; translateFn?(key: string): string; locale?: string; options?: { headers: HeaderKeyType[]; }; disabled?: boolean; } declare const Cron: React.FunctionComponent<CronProp>; export default Cron;