@glowjs/core 2023.5.7 → 2023.6.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -112,6 +112,17 @@ export declare class RunTime {
|
|
|
112
112
|
info: string;
|
|
113
113
|
modules: FunctionModule[];
|
|
114
114
|
}>;
|
|
115
|
+
/**
|
|
116
|
+
* 获取温度云图列表
|
|
117
|
+
* @param projectFile 项目文件地址
|
|
118
|
+
*/
|
|
119
|
+
static getHeatmapList(projectFile: string): Promise<{
|
|
120
|
+
name: string;
|
|
121
|
+
children: {
|
|
122
|
+
id: string;
|
|
123
|
+
name: string;
|
|
124
|
+
}[];
|
|
125
|
+
}[]>;
|
|
115
126
|
/**
|
|
116
127
|
* 应用
|
|
117
128
|
*/
|