comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
12 lines (10 loc) • 369 B
TypeScript
import { InjectionKey, Ref } from 'vue';
import { AvatarGroupProps } from './group.props';
export type AvatarGroupProvide = {
props: AvatarGroupProps;
addAvatar: (uid: number) => void;
removeAvatar: (uid: number) => void;
avatars: Ref<number[]>;
showAll: Ref<boolean>;
};
export declare const AVATARGROUP_PROVIDE: InjectionKey<AvatarGroupProvide>;