Files
accounting/client/node_modules/element-plus/es/components/avatar/src/constants.d.ts
2026-03-26 01:23:19 +08:00

11 lines
374 B
TypeScript
Executable File

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 };