UNPKG

im-ui-mobile

Version:

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

18 lines (15 loc) 384 B
import { AllowedComponentProps, VNodeProps } from '../common' declare interface SampleProps { type: string avatar: string name: string time: string lastMessage: string unreadCount: number } declare interface _Sample { new(): { $props: AllowedComponentProps & VNodeProps & SampleProps } } export declare const Sample: _Sample