constants.d.ts 374 B

1234567891011
  1. import { AvatarProps } from "./avatar.js";
  2. import { InjectionKey } from "vue";
  3. //#region ../../packages/components/avatar/src/constants.d.ts
  4. interface AvatarGroupContext {
  5. size?: AvatarProps['size'];
  6. shape?: AvatarProps['shape'];
  7. }
  8. declare const avatarGroupContextKey: InjectionKey<AvatarGroupContext>;
  9. //#endregion
  10. export { AvatarGroupContext, avatarGroupContextKey };