| | |
| | | import { ButtonProps } from '../button/index'; |
| | | import { TdOverlayProps as OverlayProps } from '../overlay/type'; |
| | | import { OverlayProps } from '../overlay/index'; |
| | | export interface TdDialogProps { |
| | | actions?: { |
| | | type: ArrayConstructor; |
| | |
| | | type: StringConstructor; |
| | | value?: string; |
| | | }; |
| | | externalClasses?: { |
| | | type: ArrayConstructor; |
| | | value?: ['t-class', 't-class-content', 't-class-confirm', 't-class-cancel']; |
| | | }; |
| | | overlayProps?: { |
| | | type: ObjectConstructor; |
| | | value?: OverlayProps; |
| | |
| | | showOverlay?: { |
| | | type: BooleanConstructor; |
| | | value?: boolean; |
| | | }; |
| | | style?: { |
| | | type: StringConstructor; |
| | | value?: string; |
| | | }; |
| | | title?: { |
| | | type: StringConstructor; |