UNPKG

@matechat/core

Version:

前端智能化场景解决方案UI库,轻松构建你的AI应用。

27 lines (26 loc) 763 B
import type { ExtractPropTypes, PropType } from 'vue'; import type { Trigger, SearchChangeEvent } from '@matechat/common/Mention/common/mention-types'; export type { Trigger, SearchChangeEvent }; export declare const mentionProps: { modelValue: { type: BooleanConstructor; default: boolean; }; prefix: { type: PropType<Array<string | Trigger>>; default: () => never[]; }; fitHostWidth: { type: BooleanConstructor; default: boolean; }; optionsCount: { type: NumberConstructor; default: number; }; menuClass: { type: StringConstructor; }; }; export type MentionProps = ExtractPropTypes<typeof mentionProps>; export declare const mentionEmits: string[];