Fixed #1836 - For AvatarGroup

pull/1846/head
mertsincan 2021-12-01 15:23:49 +03:00
parent 69fa109041
commit 36def09cd8
1 changed files with 29 additions and 3 deletions

View File

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