前端初始化

This commit is contained in:
“hsc”
2026-08-21 15:36:24 +08:00
commit e4d8ecde13
14411 changed files with 2275932 additions and 0 deletions
@@ -0,0 +1,26 @@
import { EpPropFinalized } from "../../../utils/vue/props/types.js";
import { MentionOption } from "./types.js";
//#region ../../packages/components/mention/src/mention-dropdown.d.ts
interface MentionDropdownProps {
options?: MentionOption[];
loading?: boolean;
disabled?: boolean;
contentId?: string;
ariaLabel?: string;
}
/**
* @deprecated Removed after 3.0.0, Use `MentionDropdownProps` instead.
*/
declare const mentionDropdownProps: {
options: EpPropFinalized<(new (...args: any[]) => MentionOption[]) | (() => MentionOption[]) | (((new (...args: any[]) => MentionOption[]) | (() => MentionOption[])) | null)[], unknown, unknown, () => never[], boolean>;
loading: BooleanConstructor;
disabled: BooleanConstructor;
contentId: StringConstructor;
ariaLabel: StringConstructor;
};
declare const mentionDropdownEmits: {
select: (option: MentionOption) => boolean;
};
//#endregion
export { MentionDropdownProps, mentionDropdownEmits, mentionDropdownProps };