im-ui-mobile
Version:
A Vue3.0 + Typescript instant messaging component library for Uniapp
14 lines (11 loc) • 328 B
TypeScript
import { AllowedComponentProps, VNodeProps } from '../common'
declare interface VoiceInputEmits {
(e: 'send', data: any): void
}
declare interface _VoiceInput {
new(): {
$props: AllowedComponentProps & VNodeProps
$emit: VoiceInputEmits
}
}
export declare const VoiceInput: _VoiceInput