element-plus
Version:
A Component Library for Vue 3
11 lines (10 loc) • 374 B
TypeScript
import { AvatarProps } from "./avatar.js";
import { InjectionKey } from "vue";
//#region ../../packages/components/avatar/src/constants.d.ts
interface AvatarGroupContext {
size?: AvatarProps['size'];
shape?: AvatarProps['shape'];
}
declare const avatarGroupContextKey: InjectionKey<AvatarGroupContext>;
//#endregion
export { AvatarGroupContext, avatarGroupContextKey };