instance.d.ts 233 B

1234
  1. import type Avatar from './avatar.vue';
  2. import type AvatarGroup from './avatar-group';
  3. export type AvatarInstance = InstanceType<typeof Avatar> & unknown;
  4. export type AvatarGroupInstance = InstanceType<typeof AvatarGroup> & unknown;