aircitytype 1.0.13 → 1.0.14
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.
- package/index.d.ts +3 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
@@ -274,11 +274,11 @@ interface Settings {
|
|
274
274
|
|
275
275
|
declare interface InfoTreeItem {
|
276
276
|
iD: string;
|
277
|
-
index:
|
278
|
-
parentIndex:
|
277
|
+
index: number;
|
278
|
+
parentIndex: number;
|
279
279
|
name: string;
|
280
280
|
visiblity: true;
|
281
|
-
type:
|
281
|
+
type: "EPT_Scene" | "EPT_Folder" | "EPT_EffectPoint";
|
282
282
|
}
|
283
283
|
|
284
284
|
interface AirCityLog {
|