From 36def09cd8710d1c0aeebfcaec45ceddf2a0458b Mon Sep 17 00:00:00 2001 From: mertsincan Date: Wed, 1 Dec 2021 15:23:49 +0300 Subject: [PATCH] Fixed #1836 - For AvatarGroup --- src/components/avatargroup/AvatarGroup.d.ts | 32 +++++++++++++++++++-- 1 file changed, 29 insertions(+), 3 deletions(-) diff --git a/src/components/avatargroup/AvatarGroup.d.ts b/src/components/avatargroup/AvatarGroup.d.ts index 0a43344ae..858ebee34 100644 --- a/src/components/avatargroup/AvatarGroup.d.ts +++ b/src/components/avatargroup/AvatarGroup.d.ts @@ -1,7 +1,33 @@ -interface AvatarGroupProps {} +import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers'; -declare class AvatarGroup { - $props: AvatarGroupProps; +export interface AvatarGroupProps { } +export interface AvatarGroupSlots { +} + +export declare type AvatarGroupEmits = { +} + +declare class AvatarGroup extends ClassComponent { } + +declare module '@vue/runtime-core' { + interface GlobalComponents { + AvatarGroup: GlobalComponentConstructor + } +} + +/** + * + * A set of Avatars can be displayed together using the AvatarGroup component. + * + * Helper Components: + * + * - Avatar + * + * Demos: + * + * - [AvatarGroup](https://www.primefaces.org/primevue/showcase/#/avatar) + * + */ export default AvatarGroup;