ant.d.ts 467 B

123456789101112
  1. import { BubbleList, Sender } from 'ant-design-x-vue';
  2. import type { SenderProps } from 'ant-design-x-vue';
  3. import type { ButtonProps, AvatarProps } from 'ant-design-vue';
  4. declare global {
  5. declare type AntXBubbleListInstance = InstanceType<typeof BubbleList>;
  6. declare type AntXSenderInstance = InstanceType<typeof Sender>;
  7. declare type AntXSenderProps = SenderProps;
  8. declare type AntButtonProps = ButtonProps;
  9. declare type AntAvatarProps = AvatarProps;
  10. }