UNPKG

react-cron-generator

Version:
10 lines (9 loc) 271 B
import React from 'react'; interface CustomCronProp { onChange(e: string[]): void; value: string[]; translate(e: string): string; disabled?: boolean; } declare const CustomCron: React.FunctionComponent<CustomCronProp>; export default CustomCron;