| | |
| | | import { TdTransitionProps } from '../transition/index'; |
| | | import { TdOverlayProps as OverlayProps } from '../overlay/index'; |
| | | export interface TdPopupProps { |
| | | closeBtn?: { |
| | | type: BooleanConstructor; |
| | |
| | | type: StringConstructor; |
| | | value?: string; |
| | | }; |
| | | style?: { |
| | | type: StringConstructor; |
| | | value?: string; |
| | | }; |
| | | duration?: { |
| | | type: NumberConstructor; |
| | | value?: number; |
| | |
| | | }; |
| | | overlayProps?: { |
| | | type: ObjectConstructor; |
| | | value?: object; |
| | | value?: OverlayProps; |
| | | }; |
| | | placement?: { |
| | | type: StringConstructor; |
| | |
| | | type: BooleanConstructor; |
| | | value?: boolean; |
| | | }; |
| | | transitionProps?: { |
| | | type: ObjectConstructor; |
| | | value?: TdTransitionProps; |
| | | usingCustomNavbar?: { |
| | | type: BooleanConstructor; |
| | | value?: boolean; |
| | | }; |
| | | visible?: { |
| | | type: BooleanConstructor; |