| | |
| | | import { ButtonProps } from '../button/index'; |
| | | import { PopupProps } from '../popup/index'; |
| | | import { KeysType } from '../common/common'; |
| | | export interface TdPickerProps { |
| | | autoClose?: { |
| | |
| | | type: BooleanConstructor; |
| | | value?: boolean; |
| | | }; |
| | | itemHeight?: { |
| | | type: NumberConstructor; |
| | | value?: number; |
| | | }; |
| | | keys?: { |
| | | type: ObjectConstructor; |
| | | value?: KeysType; |
| | | }; |
| | | popupProps?: { |
| | | type: ObjectConstructor; |
| | | value?: PopupProps; |
| | | }; |
| | | title?: { |
| | | type: StringConstructor; |
| | | value?: string; |
| | | }; |
| | | usePopup?: { |
| | | type: BooleanConstructor; |
| | | value?: boolean; |
| | | }; |
| | | usingCustomNavbar?: { |
| | | type: BooleanConstructor; |
| | | value?: boolean; |
| | | }; |
| | | value?: { |
| | | type: ArrayConstructor; |
| | |
| | | visible?: { |
| | | type: BooleanConstructor; |
| | | value?: boolean; |
| | | }; |
| | | popupProps: { |
| | | type: object; |
| | | value?: {}; |
| | | }; |
| | | } |
| | | export declare type PickerValue = string | number; |