ant-design-vue/components/tooltip/index.ts

15 lines
289 B
TypeScript
Raw Normal View History

2020-11-01 07:03:33 +00:00
import { withInstall } from '../_util/type';
2021-08-27 14:05:21 +00:00
import ToolTip, { tooltipProps } from './Tooltip';
export type {
TooltipProps,
AdjustOverflow,
PlacementsConfig,
TooltipAlignConfig,
PlacementTypes,
} from './Tooltip';
2020-10-24 14:38:25 +00:00
2021-08-27 14:05:21 +00:00
export { tooltipProps };
2020-11-01 07:03:33 +00:00
export default withInstall(ToolTip);