ant-design-vue/types/popover.d.ts

23 lines
671 B
TypeScript
Raw Normal View History

// 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
2019-01-12 11:33:27 +08:00
import { TooltipCommon } from './tootip/common';
import { VNodeChild } from 'vue';
2020-08-31 14:59:56 +08:00
import { AntdComponent, AntdProps } from './component';
export declare class Popover extends AntdComponent {
2020-08-31 14:59:56 +08:00
$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;
2020-08-30 22:59:47 +08:00
} & TooltipCommon;
}