UNPKG

sard-uniapp

Version:

sard-uniapp 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库

30 lines (29 loc) 846 B
import { type StyleValue } from 'vue'; import { type DefaultProps } from '../config'; export interface AvatarGroupProps { rootStyle?: StyleValue; rootClass?: string; max: number; total: number; coverage?: number; showRemain?: boolean; remainText?: string | number; } export declare const defaultAvatarGroupProps: () => DefaultProps<AvatarGroupProps>; export interface AvatarGroupSlots { default?(props: Record<string, never>): any; } export interface AvatarGroupEmits { (e: 'remain-click', event: any): void; } export interface AvatarGroupExpose { } export interface AvatarGroupContext { total: number; max: number; showRemain: boolean; remainText?: string | number; coverage: number; onRemainClick: (event: any) => void; } export declare const avatarGroupContextSymbol: unique symbol;