Update AvatarGroup.d.ts

pull/5300/head
tugcekucukoglu 2024-02-16 12:17:34 +03:00
parent c3ce4c2164
commit dfb49328f9
1 changed files with 8 additions and 2 deletions

View File

@ -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/) * [Live Demo](https://www.primevue.org/accordion/)
* *
* @module avatargroup * @module avatargroup
* *
*/ */
import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent'; import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough'; import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PassThrough } from '../ts-helpers'; import { ClassComponent, GlobalComponentConstructor, PassThrough } from '../ts-helpers';
@ -60,7 +61,12 @@ export interface AvatarGroupProps {
/** /**
* Defines valid slots in AvatarGroup component. * 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. * Defines valid emits in AvatarGroup component.