import { PlcItem, VariableItem } from "@/template/interface"; /** * 获取数据类型最大位数(整数位 + 小数位) * @param dataTypeValue */ export declare function getMaxDigits(dataTypeValue: number): number; /** * 获取地址显示格式 * @param address * @param type * @returns */ export declare function getAddressFormat(address?: number, type?: number): string; export declare function checkDigits(dataType: number, integerDigits: number, fractionDigits: number): boolean; export declare function getAddressName(item: VariableItem, plcs?: PlcItem[]): string; export declare function getAddressOption(item: VariableItem, plcs?: PlcItem[]): string;