vue3-chat-yz
Version:
vue3-chat-yz
30 lines (29 loc) • 1.17 kB
TypeScript
import { ConversationProps } from './types';
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: {
item?(_: {
item: import('./types').Conversation | undefined;
}): any;
item?(_: {
item: import('./types').Conversation | undefined;
}): any;
icon?(_: {}): any;
icon?(_: {}): any;
};
refs: {};
rootEl: HTMLUListElement;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<ConversationProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
"update:activeKey": (...args: any[]) => void;
}, string, import('vue').PublicProps, Readonly<ConversationProps> & 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;
};
};