| 123456789101112 |
- import { BubbleList, Sender } from 'ant-design-x-vue';
- import type { SenderProps } from 'ant-design-x-vue';
- import type { ButtonProps, AvatarProps } from 'ant-design-vue';
- declare global {
- declare type AntXBubbleListInstance = InstanceType<typeof BubbleList>;
- declare type AntXSenderInstance = InstanceType<typeof Sender>;
- declare type AntXSenderProps = SenderProps;
- declare type AntButtonProps = ButtonProps;
- declare type AntAvatarProps = AvatarProps;
- }
|