-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
69fa109
commit 36def09
Showing
1 changed file
with
29 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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; |