@try-at-software/input-elements
Version:
A package providing different input elements that are extensible and easily configurable for your custom needs.
10 lines (9 loc) • 344 B
TypeScript
import { IBaseInputElementProps } from '../IBaseInputElementProps';
export interface ITimePickerProps extends IBaseInputElementProps {
inputClassName?: string;
clearButtonClassName?: string;
formatDate?: (date: Date) => string;
showGoToToday?: boolean;
showMonthPicker?: boolean;
startWeekOnSunday?: boolean;
}