UNPKG

im-ui-mobile

Version:

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

21 lines (17 loc) 461 B
import { AllowedComponentProps, VNodeProps } from '../common' declare interface ChatItemProps { chat?: any index?: number active?: boolean online: boolean } declare interface ChatItemEmits { (e: 'click', targetId: number): void } declare interface _ChatItem { new(): { $props: AllowedComponentProps & VNodeProps & ChatItemProps $emit: ChatItemEmits } } export declare const ChatItem: _ChatItem