| | |
| | | import { PopupProps } from '../popup/index'; |
| | | export interface TdDateTimePickerProps { |
| | | cancelBtn?: { |
| | | type: StringConstructor; |
| | | value?: string; |
| | | }; |
| | | confirmBtn?: { |
| | | type: StringConstructor; |
| | | value?: string; |
| | | }; |
| | | customLocale?: { |
| | | type: StringConstructor; |
| | | value?: string; |
| | | }; |
| | |
| | | type: null; |
| | | value?: DateTimePickerMode; |
| | | }; |
| | | popupProps?: { |
| | | type: ObjectConstructor; |
| | | value?: PopupProps; |
| | | }; |
| | | showWeek?: { |
| | | type: BooleanConstructor; |
| | | value?: boolean; |
| | |
| | | type: StringConstructor; |
| | | value?: string; |
| | | }; |
| | | usePopup?: { |
| | | type: BooleanConstructor; |
| | | value?: boolean; |
| | | }; |
| | | value?: { |
| | | type: null; |
| | | value?: DateValue; |
| | |
| | | visible?: { |
| | | type: BooleanConstructor; |
| | | value?: boolean; |
| | | }; |
| | | popupProps: { |
| | | type: Object; |
| | | value: {}; |
| | | }; |
| | | } |
| | | export declare type DateTimePickerMode = TimeModeValues | Array<TimeModeValues>; |