import { PopoverProps } from '@firesoon/antd/lib/popover'; export interface Iprops extends PopoverProps { /** 操作气泡类型 */ type?: 'operate' | 'delete'; /** 操作气泡类型-取消 */ onCancel?: () => void; /** 操作气泡类型-确认 */ onOk?: () => void; }