Skip to content

Commit

Permalink
Update AvatarGroup.d.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
tugcekucukoglu committed Feb 16, 2024
1 parent c3ce4c2 commit dfb4932
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions components/lib/avatargroup/AvatarGroup.d.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
/**
*
* AvatarGroup is a helper component for Avatar.
* A set of Avatars can be displayed together using the AvatarGroup component.
*
* [Live Demo](https://www.primevue.org/accordion/)
*
* @module avatargroup
*
*/
import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PassThrough } from '../ts-helpers';
Expand Down Expand Up @@ -60,7 +61,12 @@ export interface AvatarGroupProps {
/**
* Defines valid slots in AvatarGroup component.
*/
export interface AvatarGroupSlots {}
export interface AvatarGroupSlots {
/**
* Default slot to detect Avatar components.
*/
default(): VNode[];
}

/**
* Defines valid emits in AvatarGroup component.
Expand Down

0 comments on commit dfb4932

Please sign in to comment.