UNPKG

react-stopwatch-input

Version:
12 lines (11 loc) 341 B
import { ChangeEvent } from 'react'; interface ITimeSeriesInputProps { name: string; value?: string; required: boolean; id?: string; className?: string; onChange?: (e: ChangeEvent<HTMLInputElement>) => void; } declare function StopwatchInput(props: ITimeSeriesInputProps): JSX.Element; export default StopwatchInput;