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

47 lines
1.0 KiB
TypeScript
Raw Normal View History

2023-03-01 12:55:32 +00:00
/**
*
* AvatarGroup is a helper component for Avatar.
*
* [Live Demo](https://www.primevue.org/accordion/)
*
* @module avatargroup
*
*/
2022-09-06 12:03:37 +00:00
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
2023-03-01 12:55:32 +00:00
/**
* Defines valid properties in AvatarGroup component.
*/
2022-09-14 11:26:01 +00:00
export interface AvatarGroupProps {}
2022-09-06 12:03:37 +00:00
2023-03-01 12:55:32 +00:00
/**
* Defines valid slots in AvatarGroup component.
*/
2022-09-14 11:26:01 +00:00
export interface AvatarGroupSlots {}
2022-09-06 12:03:37 +00:00
2023-03-01 12:55:32 +00:00
/**
* Defines valid emits in AvatarGroup component.
*/
export interface AvatarGroupEmits {}
2022-09-06 12:03:37 +00:00
2023-03-01 12:55:32 +00:00
/**
* **PrimeVue - AvatarGroup**
*
* _A set of Avatars can be displayed together using the AvatarGroup component._
*
* [Live Demo](https://www.primevue.org/avatargroup/)
* --- ---
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
*
* @group Component
*/
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
}
}
export default AvatarGroup;