You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
671 B
23 lines
671 B
// Project: https://github.com/vueComponent/ant-design-vue
|
|
// Definitions by: akki-jat <https://github.com/akki-jat>
|
|
// Definitions: https://github.com/vueComponent/ant-design-vue/types
|
|
|
|
import { TooltipCommon } from './tootip/common';
|
|
import { VNodeChild } from 'vue';
|
|
import { AntdComponent, AntdProps } from './component';
|
|
export declare class Popover extends AntdComponent {
|
|
$props: AntdProps & {
|
|
/**
|
|
* Content of the card
|
|
* @type any (string | slot | VNode)
|
|
*/
|
|
content?: VNodeChild | JSX.Element;
|
|
|
|
/**
|
|
* Title of the card
|
|
* @type any (string | slot | VNode)
|
|
*/
|
|
title?: VNodeChild | JSX.Element;
|
|
} & TooltipCommon;
|
|
}
|