@vertigis/arcgis-extensions 35.7.0 → 35.8.2

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.
@@ -10,6 +10,17 @@ declare module "@arcgis/core/core/Warning" {
10
10
  export default Warning;
11
11
  }
12
12
 
13
+ declare module "@arcgis/core/networks/UtilityNetwork" {
14
+ interface UtilityNetwork extends __esri.JSONSupport, __esri.UtilityNetwork, __esri.Network {}
15
+ interface UtilityNetworkConstructor {
16
+ new (properties?: any): UtilityNetwork;
17
+ fromJSON(json: any): UtilityNetwork;
18
+ }
19
+
20
+ const UtilityNetwork: UtilityNetworkConstructor;
21
+ export default UtilityNetwork;
22
+ }
23
+
13
24
  declare module "@arcgis/core/layers/support/source/DataLayerSource" {
14
25
  interface DataLayerSource extends __esri.JSONSupport, __esri.DynamicDataLayer {}
15
26
  interface DataLayerSourceConstructor {