popconfirm.d.ts 594 B

1234567891011121314151617181920212223242526272829
  1. import { ElementUIComponent } from './component'
  2. import { ElPopover } from './popover'
  3. /** Popconfirm Component */
  4. export declare class ElPopconfirm extends ElPopover {
  5. /** Popconfirm title */
  6. title: string
  7. /** Popconfirm ok text */
  8. confirmButtonText: string
  9. /** Popconfirm cancel text */
  10. cancelButtonText: string
  11. /** Popconfirm ok type */
  12. confirmButtonType: string
  13. /** Popconfirm cancal type */
  14. cancelButtonType: string
  15. /** Popconfirm icon */
  16. icon: string
  17. /** Popconfirm icon color */
  18. iconColor: string
  19. /** Popconfirm hide icon */
  20. hideIcon: boolean
  21. }