mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
29 lines
543 B
TypeScript
29 lines
543 B
TypeScript
import { ElPopover } from './popover'
|
|
|
|
/** Popconfirm Component */
|
|
export declare class ElPopconfirm extends ElPopover {
|
|
/** Popconfirm title */
|
|
title: string
|
|
|
|
/** Popconfirm ok text */
|
|
confirmButtonText: string
|
|
|
|
/** Popconfirm cancel text */
|
|
cancelButtonText: string
|
|
|
|
/** Popconfirm ok type */
|
|
confirmButtonType: string
|
|
|
|
/** Popconfirm cancal type */
|
|
cancelButtonType: string
|
|
|
|
/** Popconfirm icon */
|
|
icon: string
|
|
|
|
/** Popconfirm icon color */
|
|
iconColor: string
|
|
|
|
/** Popconfirm hide icon */
|
|
hideIcon: boolean
|
|
}
|