ant-design-vue/types/tootip/tooltip.d.ts

18 lines
544 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
2020-08-22 02:21:34 +00:00
import { VNodeChild } from 'vue';
2020-08-31 06:59:56 +00:00
import { AntdComponent, AntdProps } from '../component';
2019-01-12 03:33:27 +00:00
import { TooltipCommon } from './common';
2020-08-22 02:21:34 +00:00
export declare class Tooltip extends AntdComponent {
2020-08-31 06:59:56 +00:00
$props: AntdProps & {
/**
* The text shown in the tooltip
* @type any (string | slot)
*/
2020-08-22 02:21:34 +00:00
title: VNodeChild | JSX.Element;
} & TooltipCommon;
}