UNPKG

@gpa-gemstone/react-forms

Version:
10 lines (9 loc) 298 B
import * as moment from 'moment'; interface IProps { DateTime: moment.Moment | undefined; Setter: (record: moment.Moment) => void; Accuracy?: Accuracy; } export type Accuracy = ('minute' | 'second' | 'millisecond'); export default function Clock(props: IProps): JSX.Element; export {};