UNPKG

im-ui-mobile

Version:

A Vue3.0 + Typescript instant messaging component library for Uniapp

18 lines (15 loc) 385 B
import { AllowedComponentProps, VNodeProps } from '../common' declare interface AvatarProps { id?: number size?: number | string url?: string name?: string radius?: string online?: boolean } declare interface _Avatar { new(): { $props: AllowedComponentProps & VNodeProps & AvatarProps } } export declare const Avatar: _Avatar