pick-datetime-react
Version:
Datetime picker for React
8 lines (7 loc) • 339 B
TypeScript
import { FC } from 'react';
import { FormItemProps } from '../types';
declare type PickerWithInputProps = {
onChange?: (value: Date) => void;
} & Omit<FormItemProps, 'value' | 'type' | 'className' | 'messageType' | 'readOnly' | 'onChange' | 'onFocus'>;
export declare const PickerWithInput: FC<PickerWithInputProps>;
export {};