UNPKG

afdi-ambition-fbim-fe

Version:

3D组态BIM编辑器

41 lines (40 loc) 2.14 kB
import { Device, DeviceTree, DeviceType, EquBindElement, EquBindElementOp, EquBindTag, SearchDeviceListType, Tag } from '../constant'; type __VLS_Props = { equBindTag: boolean; componentName: string; isShow: boolean; deviceTypeList?: DeviceType[]; getDeviceListByType?: (deviceTypeCode?: string) => Promise<Device[]>; tagBindDeviceData?: Tag[]; elementBindDeviceData?: EquBindElementOp[]; getTagBindDeviceDataByTagId?: (tagId: number) => Promise<Tag[]>; getElementBindDeviceById?: (elementId: number, type: string) => Promise<EquBindElementOp[]>; getDeviceTreeByTypeAndName?: (typeCode?: string, deviceName?: string) => Promise<DeviceTree[]>; getDeviceBindingStatus?: (deviceIds: number[]) => Promise<IDeviceBindingStateVO[]>; getAllBindDeviceList?: (SearchDeviceListType: SearchDeviceListType) => Promise<any>; }; declare const _default: import('vue').DefineComponent<__VLS_TypePropsToOption<__VLS_Props>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { closeEqu: (data?: any) => void; seeInformation: () => void; updateTagDeviceBinding: (data: EquBindTag) => void; updateElementDeviceBinding: (data: EquBindElement) => void; importBindConfigFile: () => void; downloadBindConfigFile: () => void; }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>> & { onSeeInformation?: (() => any) | undefined; onCloseEqu?: ((data?: any) => any) | undefined; onUpdateTagDeviceBinding?: ((data: EquBindTag) => any) | undefined; onUpdateElementDeviceBinding?: ((data: EquBindElement) => any) | undefined; onImportBindConfigFile?: (() => any) | undefined; onDownloadBindConfigFile?: (() => any) | undefined; }, {}, {}>; export default _default; type __VLS_NonUndefinedable<T> = T extends undefined ? never : T; type __VLS_TypePropsToOption<T> = { [K in keyof T]-?: {} extends Pick<T, K> ? { type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>; } : { type: import('vue').PropType<T[K]>; required: true; }; };