UNPKG

afdi-ambition-fbim-fe

Version:

3D组态BIM编辑器

27 lines (26 loc) 819 B
/**Element */ export declare function useElementApi(): { /** * Element-返回新的自定义构件id * @param data.projectId 项目id * @param data.sadiId sadi id * @param data.count id数量 */ Element_Custom_Id_projectId_sadiId_countGET(data: { projectId: number | string; sadiId: number | string; count: number | string; }, config?: {}): Promise<IInt32ListResponse>; /** * Element-添加自定义构件 */ ElementPOST(data: IAddCustomElementBo, config?: {}): Promise<IObjectResponse>; /** * Element-删除构件 */ ElementDELETE(data: IDeleteElementBo, config?: {}): Promise<IObjectResponse>; /** * Element-更新构件 */ ElementPUT(data: IUpdateElementBo, config?: {}): Promise<IObjectResponse>; };