Fixed #1836 - For AvatarGroup
parent
69fa109041
commit
36def09cd8
|
@ -1,7 +1,33 @@
|
||||||
interface AvatarGroupProps {}
|
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
||||||
|
|
||||||
declare class AvatarGroup {
|
export interface AvatarGroupProps {
|
||||||
$props: 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;
|
export default AvatarGroup;
|
||||||
|
|
Loading…
Reference in New Issue