mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Fixed #3802 - Improve folder structure for nuxt configurations
This commit is contained in:
parent
851950270b
commit
f5fe822afb
563 changed files with 1703 additions and 1095 deletions
46
components/lib/avatargroup/AvatarGroup.d.ts
vendored
Normal file
46
components/lib/avatargroup/AvatarGroup.d.ts
vendored
Normal file
|
@ -0,0 +1,46 @@
|
|||
/**
|
||||
*
|
||||
* AvatarGroup is a helper component for Avatar.
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/accordion/)
|
||||
*
|
||||
* @module avatargroup
|
||||
*
|
||||
*/
|
||||
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
||||
|
||||
/**
|
||||
* Defines valid properties in AvatarGroup component.
|
||||
*/
|
||||
export interface AvatarGroupProps {}
|
||||
|
||||
/**
|
||||
* Defines valid slots in AvatarGroup component.
|
||||
*/
|
||||
export interface AvatarGroupSlots {}
|
||||
|
||||
/**
|
||||
* Defines valid emits in AvatarGroup component.
|
||||
*/
|
||||
export interface AvatarGroupEmits {}
|
||||
|
||||
/**
|
||||
* **PrimeVue - AvatarGroup**
|
||||
*
|
||||
* _A set of Avatars can be displayed together using the AvatarGroup component._
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/avatargroup/)
|
||||
* --- ---
|
||||
* 
|
||||
*
|
||||
* @group Component
|
||||
*/
|
||||
declare class AvatarGroup extends ClassComponent<AvatarGroupProps, AvatarGroupSlots, AvatarGroupEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
AvatarGroup: GlobalComponentConstructor<AvatarGroup>;
|
||||
}
|
||||
}
|
||||
|
||||
export default AvatarGroup;
|
Loading…
Add table
Add a link
Reference in a new issue