react-stopwatch-input
Version:
Simple react input for stopwatch times
12 lines (11 loc) • 341 B
TypeScript
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;