im-ui-mobile
Version:
A Vue3.0 + Typescript instant messaging component library for Uniapp
19 lines (15 loc) • 420 B
TypeScript
import { AllowedComponentProps, VNodeProps } from '../common'
declare interface FriendItemProps {
friend?: any
detail?: boolean
}
declare interface FriendItemSlots {
default?: () => any
}
declare interface _FriendItem {
new(): {
$props: AllowedComponentProps & VNodeProps & FriendItemProps
$slots: FriendItemSlots
}
}
export declare const FriendItem: _FriendItem