element/types/popconfirm.d.ts
iamkun 2842399eb7 Popconfirm: Add popconfirm component (#17548)
* init

* init

* init docs

* init docs2

* init type

* update test

* update naming
2019-10-31 15:05:41 +08:00

30 lines
594 B
TypeScript

import { ElementUIComponent } from './component'
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
}