Skip to content

Commit

Permalink
Fixed #1836 - For AvatarGroup
Browse files Browse the repository at this point in the history
  • Loading branch information
mertsincan committed Dec 1, 2021
1 parent 69fa109 commit 36def09
Showing 1 changed file with 29 additions and 3 deletions.
32 changes: 29 additions & 3 deletions src/components/avatargroup/AvatarGroup.d.ts
Original file line number Diff line number Diff line change
@@ -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<AvatarGroupProps, AvatarGroupSlots, AvatarGroupEmits> { }

declare module '@vue/runtime-core' {
interface GlobalComponents {
AvatarGroup: GlobalComponentConstructor<AvatarGroup>
}
}

/**
*
* 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;

0 comments on commit 36def09

Please sign in to comment.