@arco-design/web-vue
Version:
Arco Design Vue 2.0: A Vue.js 3 UI Library
11 lines (10 loc) • 329 B
TypeScript
import { InjectionKey } from 'vue';
import { AvatarShape } from './interface';
export interface AvatarGroupContext {
size: number | undefined;
shape: AvatarShape;
autoFixFontSize: boolean;
zIndexAscend: boolean;
total: number;
}
export declare const avatarGroupInjectionKey: InjectionKey<AvatarGroupContext>;