UNPKG

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