primevue-mirror/components/avatargroup/AvatarGroup.d.ts

31 lines
685 B
TypeScript
Raw Normal View History

2022-09-06 12:03:37 +00:00
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
2022-09-14 11:26:01 +00:00
export interface AvatarGroupProps {}
2022-09-06 12:03:37 +00:00
2022-09-14 11:26:01 +00:00
export interface AvatarGroupSlots {}
2022-09-06 12:03:37 +00:00
2022-09-14 11:26:01 +00:00
export declare type AvatarGroupEmits = {};
2022-09-06 12:03:37 +00:00
2022-09-14 11:26:01 +00:00
declare class AvatarGroup extends ClassComponent<AvatarGroupProps, AvatarGroupSlots, AvatarGroupEmits> {}
2022-09-06 12:03:37 +00:00
declare module '@vue/runtime-core' {
interface GlobalComponents {
2022-09-14 11:26:01 +00:00
AvatarGroup: GlobalComponentConstructor<AvatarGroup>;
2022-09-06 12:03:37 +00:00
}
}
/**
*
* A set of Avatars can be displayed together using the AvatarGroup component.
*
* Helper Components:
*
* - Avatar
*
* Demos:
*
2022-09-14 11:26:01 +00:00
* - [AvatarGroup](https://www.primefaces.org/primevue/avatar)
2022-09-06 12:03:37 +00:00
*
*/
export default AvatarGroup;