/** * 组件节点 API 接口 */ export interface NodesAPI { [key: string]: { ideusage: any; props: any[]; slots: any[]; events: any[]; }; } /** * 组件查找 Map 项接口 */ export interface ComponentLookupItem { component: { ideusage: any; propsNames: string; eventNames: string; slotNames: string; }; propsMap: Map; eventsMap: Map; slotsMap: Map; } /** * 转换 allNodesAPI 为快速查找的 Map 结构 * @param nodesAPI 原始的组件API定义 * @returns 优化后的查找Map */ export declare function createComponentLookupMap(nodesAPI: NodesAPI): Map; //# sourceMappingURL=createComponentLookupMap.d.ts.map