UNPKG

@artmate/chat

Version:

借鉴字节开源react库AntX,通过vue实现的版本

30 lines (29 loc) 1.15 kB
import { Conversation, ConversationsProps } from './interface'; declare function __VLS_template(): { attrs: Partial<{}>; slots: { item?(_: { item: Conversation | undefined; }): any; item?(_: { item: Conversation | undefined; }): any; icon?(_: {}): any; icon?(_: {}): any; }; refs: {}; rootEl: HTMLUListElement; }; type __VLS_TemplateResult = ReturnType<typeof __VLS_template>; declare const __VLS_component: import('vue').DefineComponent<ConversationsProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:activeKey": (...args: any[]) => void; }, string, import('vue').PublicProps, Readonly<ConversationsProps> & Readonly<{ "onUpdate:activeKey"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLUListElement>; declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };