@arcgis/core-adapter 4.32.0-next.35 → 4.32.0-next.37

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.
@@ -183,22 +183,15 @@ declare namespace __esri {
183
183
 
184
184
  interface reactiveUtils {
185
185
  watch<T>(getValue: () => T, callback: (newValue: T, oldValue: T) => void, options?: ReactiveWatchOptions): IHandle;
186
- when<T>(
187
- getValue: () => T | null | undefined,
188
- callback: (newValue: T, oldValue: T | null) => void,
189
- options?: ReactiveWatchOptions,
190
- ): IHandle;
186
+ when<T>(getValue: () => T, callback: (newValue: T, oldValue: T) => void, options?: ReactiveWatchOptions): IHandle;
191
187
  on<T extends Evented | EventTarget>(
192
- getTarget: () => T | null | undefined,
188
+ getTarget: () => T,
193
189
  eventName: string,
194
190
  callback: (value: any) => void,
195
191
  options?: ReactiveListenerOptions<T>,
196
192
  ): IHandle;
197
- once<T>(getValue: () => T, signal?: AbortSignal | { signal?: AbortSignal } | null): Promise<T>;
198
- whenOnce<T>(
199
- getValue: () => T | null | undefined,
200
- signal?: AbortSignal | { signal?: AbortSignal } | null,
201
- ): Promise<T>;
193
+ once<T>(getValue: () => T, signal?: AbortSignal | { signal?: AbortSignal }): Promise<T>;
194
+ whenOnce<T>(getValue: () => T, signal?: AbortSignal | { signal?: AbortSignal }): Promise<T>;
202
195
  }
203
196
 
204
197
  export const reactiveUtils: reactiveUtils;
@@ -1447,6 +1440,24 @@ declare namespace __esri {
1447
1440
 
1448
1441
  export const previewSymbol2D: previewSymbol2D;
1449
1442
 
1443
+ /**
1444
+ * Note: reserved for internal use only, this is not part of the stable public API.
1445
+ *
1446
+ * Various utilities for the Scene Viewer application.
1447
+ */
1448
+ interface sceneViewUtils {
1449
+ /**
1450
+ * Note: reserved for internal use only, this is not part of the stable public API.
1451
+ *
1452
+ * Gets whether the weather is visible in the scene view.
1453
+ *
1454
+ * @param view The scene view.
1455
+ */
1456
+ isWeatherVisible(view: SceneView): boolean;
1457
+ }
1458
+
1459
+ export const sceneViewUtils: sceneViewUtils;
1460
+
1450
1461
  /**
1451
1462
  * Note: reserved for internal use only, this is not part of the stable public API.
1452
1463
  *
@@ -3122,6 +3133,14 @@ declare namespace __esri {
3122
3133
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-accessorSupport-decorators.html#aliasOf Read more...}
3123
3134
  */
3124
3135
  aliasOf(propertyName: string): Function;
3136
+ /**
3137
+ * This method decorator is used to define the method that will cast a property from a class.
3138
+ *
3139
+ * @param propertyName The property name the function will cast.
3140
+ *
3141
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-accessorSupport-decorators.html#cast Read more...}
3142
+ */
3143
+ cast(propertyName: string): Function;
3125
3144
  /**
3126
3145
  * This property decorator is used to define the function or class for a property.
3127
3146
  *
@@ -21792,13 +21811,13 @@ declare namespace __esri {
21792
21811
  *
21793
21812
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryTileLayer.html#popupEnabled Read more...}
21794
21813
  */
21795
- declare popupEnabled: ImageryTileMixin["popupEnabled"];
21814
+ popupEnabled: boolean;
21796
21815
  /**
21797
21816
  * The popup template for the layer.
21798
21817
  *
21799
21818
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryTileLayer.html#popupTemplate Read more...}
21800
21819
  */
21801
- declare popupTemplate: ImageryTileMixin["popupTemplate"];
21820
+ popupTemplate: PopupTemplate;
21802
21821
  /**
21803
21822
  * The portal item from which the layer is loaded.
21804
21823
  *
@@ -22104,13 +22123,13 @@ declare namespace __esri {
22104
22123
  *
22105
22124
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryTileLayer.html#popupEnabled Read more...}
22106
22125
  */
22107
- popupEnabled?: ImageryTileMixinProperties["popupEnabled"];
22126
+ popupEnabled?: boolean;
22108
22127
  /**
22109
22128
  * The popup template for the layer.
22110
22129
  *
22111
22130
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryTileLayer.html#popupTemplate Read more...}
22112
22131
  */
22113
- popupTemplate?: ImageryTileMixinProperties["popupTemplate"];
22132
+ popupTemplate?: PopupTemplateProperties;
22114
22133
  /**
22115
22134
  * The portal item from which the layer is loaded.
22116
22135
  *
@@ -26053,8 +26072,6 @@ declare namespace __esri {
26053
26072
  legendEnabled: boolean;
26054
26073
  multidimensionalDefinition: DimensionalDefinition[];
26055
26074
  multidimensionalSubset: MultidimensionalSubset;
26056
- popupEnabled: boolean;
26057
- popupTemplate: PopupTemplate;
26058
26075
  renderer:
26059
26076
  | ClassBreaksRenderer
26060
26077
  | UniqueValueRenderer
@@ -26105,8 +26122,6 @@ declare namespace __esri {
26105
26122
  legendEnabled?: boolean;
26106
26123
  multidimensionalDefinition?: DimensionalDefinitionProperties[];
26107
26124
  multidimensionalSubset?: MultidimensionalSubsetProperties;
26108
- popupEnabled?: boolean;
26109
- popupTemplate?: PopupTemplateProperties;
26110
26125
  renderer?:
26111
26126
  | (ClassBreaksRendererProperties & { type: "class-breaks" })
26112
26127
  | (UniqueValueRendererProperties & { type: "unique-value" })
@@ -44076,20 +44091,6 @@ declare namespace __esri {
44076
44091
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-WCSLayer.html#persistenceEnabled Read more...}
44077
44092
  */
44078
44093
  declare persistenceEnabled: OperationalLayer["persistenceEnabled"];
44079
- /**
44080
- * Indicates whether to display popups when features in the layer are clicked.
44081
- *
44082
- * @default true
44083
- *
44084
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-WCSLayer.html#popupEnabled Read more...}
44085
- */
44086
- declare popupEnabled: ImageryTileMixin["popupEnabled"];
44087
- /**
44088
- * The popup template for the layer.
44089
- *
44090
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-WCSLayer.html#popupTemplate Read more...}
44091
- */
44092
- declare popupTemplate: ImageryTileMixin["popupTemplate"];
44093
44094
  /**
44094
44095
  * The portal item from which the layer is loaded.
44095
44096
  *
@@ -44318,18 +44319,6 @@ declare namespace __esri {
44318
44319
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-WCSLayer.html#persistenceEnabled Read more...}
44319
44320
  */
44320
44321
  persistenceEnabled?: OperationalLayerProperties["persistenceEnabled"];
44321
- /**
44322
- * Indicates whether to display popups when features in the layer are clicked.
44323
- *
44324
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-WCSLayer.html#popupEnabled Read more...}
44325
- */
44326
- popupEnabled?: ImageryTileMixinProperties["popupEnabled"];
44327
- /**
44328
- * The popup template for the layer.
44329
- *
44330
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-WCSLayer.html#popupTemplate Read more...}
44331
- */
44332
- popupTemplate?: ImageryTileMixinProperties["popupTemplate"];
44333
44322
  /**
44334
44323
  * The portal item from which the layer is loaded.
44335
44324
  *
@@ -95580,6 +95569,54 @@ declare namespace __esri {
95580
95569
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#toScreen Read more...}
95581
95570
  */
95582
95571
  toScreen(point: Point): SceneViewScreenPoint;
95572
+ /**
95573
+ * Gets the analysis view created for the given analysis object.
95574
+ *
95575
+ * @param analysis
95576
+ *
95577
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#whenAnalysisView Read more...}
95578
+ */
95579
+ whenAnalysisView(analysis: LineOfSightAnalysis): Promise<LineOfSightAnalysisView3D>;
95580
+ /**
95581
+ * Gets the analysis view created for the given analysis object.
95582
+ *
95583
+ * @param analysis
95584
+ *
95585
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#whenAnalysisView Read more...}
95586
+ */
95587
+ whenAnalysisView(analysis: DirectLineMeasurementAnalysis): Promise<DirectLineMeasurementAnalysisView3D>;
95588
+ /**
95589
+ * Gets the analysis view created for the given analysis object.
95590
+ *
95591
+ * @param analysis
95592
+ *
95593
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#whenAnalysisView Read more...}
95594
+ */
95595
+ whenAnalysisView(analysis: AreaMeasurementAnalysis): Promise<AreaMeasurementAnalysisView3D>;
95596
+ /**
95597
+ * Gets the analysis view created for the given analysis object.
95598
+ *
95599
+ * @param analysis
95600
+ *
95601
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#whenAnalysisView Read more...}
95602
+ */
95603
+ whenAnalysisView(analysis: SliceAnalysis): Promise<SliceAnalysisView3D>;
95604
+ /**
95605
+ * Gets the analysis view created for the given analysis object.
95606
+ *
95607
+ * @param analysis
95608
+ *
95609
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#whenAnalysisView Read more...}
95610
+ */
95611
+ whenAnalysisView(analysis: DimensionAnalysis): Promise<DimensionAnalysisView>;
95612
+ /**
95613
+ * Gets the analysis view created for the given analysis object.
95614
+ *
95615
+ * @param analysis
95616
+ *
95617
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#whenAnalysisView Read more...}
95618
+ */
95619
+ whenAnalysisView(analysis: ViewshedAnalysis): Promise<ViewshedAnalysisView3D>;
95583
95620
  /**
95584
95621
  * Gets the analysis view created for the given analysis object.
95585
95622
  *
@@ -96530,6 +96567,141 @@ declare namespace __esri {
96530
96567
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#when Read more...}
96531
96568
  */
96532
96569
  when(callback?: Function, errback?: Function): Promise<any>;
96570
+ /**
96571
+ * Gets the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-LayerView.html LayerView} created
96572
+ * on the view for the given layer.
96573
+ *
96574
+ * @param layer
96575
+ *
96576
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#whenLayerView Read more...}
96577
+ */
96578
+ whenLayerView(layer: PointCloudLayer): Promise<any>;
96579
+ /**
96580
+ * Gets the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-LayerView.html LayerView} created
96581
+ * on the view for the given layer.
96582
+ *
96583
+ * @param layer
96584
+ *
96585
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#whenLayerView Read more...}
96586
+ */
96587
+ whenLayerView(layer: StreamLayer): Promise<any>;
96588
+ /**
96589
+ * Gets the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-LayerView.html LayerView} created
96590
+ * on the view for the given layer.
96591
+ *
96592
+ * @param layer
96593
+ *
96594
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#whenLayerView Read more...}
96595
+ */
96596
+ whenLayerView(layer: WFSLayer): Promise<any>;
96597
+ /**
96598
+ * Gets the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-LayerView.html LayerView} created
96599
+ * on the view for the given layer.
96600
+ *
96601
+ * @param layer
96602
+ *
96603
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#whenLayerView Read more...}
96604
+ */
96605
+ whenLayerView(layer: OGCFeatureLayer): Promise<any>;
96606
+ /**
96607
+ * Gets the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-LayerView.html LayerView} created
96608
+ * on the view for the given layer.
96609
+ *
96610
+ * @param layer
96611
+ *
96612
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#whenLayerView Read more...}
96613
+ */
96614
+ whenLayerView(layer: FeatureLayer): Promise<any>;
96615
+ /**
96616
+ * Gets the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-LayerView.html LayerView} created
96617
+ * on the view for the given layer.
96618
+ *
96619
+ * @param layer
96620
+ *
96621
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#whenLayerView Read more...}
96622
+ */
96623
+ whenLayerView(layer: CSVLayer): Promise<any>;
96624
+ /**
96625
+ * Gets the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-LayerView.html LayerView} created
96626
+ * on the view for the given layer.
96627
+ *
96628
+ * @param layer
96629
+ *
96630
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#whenLayerView Read more...}
96631
+ */
96632
+ whenLayerView(layer: GeoJSONLayer): Promise<any>;
96633
+ /**
96634
+ * Gets the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-LayerView.html LayerView} created
96635
+ * on the view for the given layer.
96636
+ *
96637
+ * @param layer
96638
+ *
96639
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#whenLayerView Read more...}
96640
+ */
96641
+ whenLayerView(layer: GeoRSSLayer): Promise<any>;
96642
+ /**
96643
+ * Gets the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-LayerView.html LayerView} created
96644
+ * on the view for the given layer.
96645
+ *
96646
+ * @param layer
96647
+ *
96648
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#whenLayerView Read more...}
96649
+ */
96650
+ whenLayerView(layer: GraphicsLayer): Promise<any>;
96651
+ /**
96652
+ * Gets the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-LayerView.html LayerView} created
96653
+ * on the view for the given layer.
96654
+ *
96655
+ * @param layer
96656
+ *
96657
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#whenLayerView Read more...}
96658
+ */
96659
+ whenLayerView(layer: ImageryLayer): Promise<any>;
96660
+ /**
96661
+ * Gets the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-LayerView.html LayerView} created
96662
+ * on the view for the given layer.
96663
+ *
96664
+ * @param layer
96665
+ *
96666
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#whenLayerView Read more...}
96667
+ */
96668
+ whenLayerView(layer: KMLLayer): Promise<any>;
96669
+ /**
96670
+ * Gets the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-LayerView.html LayerView} created
96671
+ * on the view for the given layer.
96672
+ *
96673
+ * @param layer
96674
+ *
96675
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#whenLayerView Read more...}
96676
+ */
96677
+ whenLayerView(layer: SceneLayer): Promise<any>;
96678
+ /**
96679
+ * Gets the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-LayerView.html LayerView} created
96680
+ * on the view for the given layer.
96681
+ *
96682
+ * @param layer
96683
+ *
96684
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#whenLayerView Read more...}
96685
+ */
96686
+ whenLayerView(layer: DimensionLayer): Promise<any>;
96687
+ /**
96688
+ * Gets the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-LayerView.html LayerView} created
96689
+ * on the view for the given layer.
96690
+ *
96691
+ * @param layer
96692
+ *
96693
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#whenLayerView Read more...}
96694
+ */
96695
+ whenLayerView(layer: MediaLayer): Promise<any>;
96696
+ /**
96697
+ * Gets the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-LayerView.html LayerView} created
96698
+ * on the view for the given layer.
96699
+ *
96700
+ * @param layer
96701
+ *
96702
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#whenLayerView Read more...}
96703
+ */
96704
+ whenLayerView(layer: ViewshedLayer): Promise<any>;
96533
96705
  /**
96534
96706
  * Gets the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-LayerView.html LayerView} created
96535
96707
  * on the view for the given layer.
@@ -117703,7 +117875,19 @@ declare namespace __esri {
117703
117875
  *
117704
117876
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#alignment Read more...}
117705
117877
  */
117706
- alignment: "auto" | "top-center" | "top-right" | "bottom-left" | "bottom-center" | "bottom-right" | Function;
117878
+ alignment:
117879
+ | "auto"
117880
+ | "top-leading"
117881
+ | "top-trailing"
117882
+ | "bottom-leading"
117883
+ | "bottom-trailing"
117884
+ | "top-left"
117885
+ | "top-center"
117886
+ | "top-right"
117887
+ | "bottom-left"
117888
+ | "bottom-center"
117889
+ | "bottom-right"
117890
+ | Function;
117707
117891
  /**
117708
117892
  * This closes the popup when the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html View} camera or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-Viewpoint.html Viewpoint} changes.
117709
117893
  *
@@ -117980,7 +118164,19 @@ declare namespace __esri {
117980
118164
  *
117981
118165
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#alignment Read more...}
117982
118166
  */
117983
- alignment?: "auto" | "top-center" | "top-right" | "bottom-left" | "bottom-center" | "bottom-right" | Function;
118167
+ alignment?:
118168
+ | "auto"
118169
+ | "top-leading"
118170
+ | "top-trailing"
118171
+ | "bottom-leading"
118172
+ | "bottom-trailing"
118173
+ | "top-left"
118174
+ | "top-center"
118175
+ | "top-right"
118176
+ | "bottom-left"
118177
+ | "bottom-center"
118178
+ | "bottom-right"
118179
+ | Function;
117984
118180
  /**
117985
118181
  * This closes the popup when the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html View} camera or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-Viewpoint.html Viewpoint} changes.
117986
118182
  *
@@ -118247,7 +118443,7 @@ declare namespace __esri {
118247
118443
  *
118248
118444
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print.html#templateCustomTextElements Read more...}
118249
118445
  */
118250
- templateCustomTextElements: any[];
118446
+ templateCustomTextElements: HashMap<HashMap<string>[]>;
118251
118447
  /**
118252
118448
  * Defines the layout template options used by the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print.html Print} widget to generate the print page.
118253
118449
  *
@@ -118334,7 +118530,7 @@ declare namespace __esri {
118334
118530
  *
118335
118531
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print.html#templateCustomTextElements Read more...}
118336
118532
  */
118337
- templateCustomTextElements?: any[];
118533
+ templateCustomTextElements?: HashMap<HashMap<string>[]>;
118338
118534
  /**
118339
118535
  * Defines the layout template options used by the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print.html Print} widget to generate the print page.
118340
118536
  *
@@ -118376,7 +118572,7 @@ declare namespace __esri {
118376
118572
  *
118377
118573
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-CustomTemplate.html#format Read more...}
118378
118574
  */
118379
- format: "pdf" | "png32" | "png8" | "jpg" | "gif" | "eps" | "svg" | "svgz";
118575
+ format: "jpg" | "png8" | "png32" | "pdf" | "gif" | "tiff" | "aix" | "eps" | "svg" | "svgz";
118380
118576
  /**
118381
118577
  * The text that appears inside the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print.html Print Widget's} `Select template` button.
118382
118578
  *
@@ -118412,7 +118608,7 @@ declare namespace __esri {
118412
118608
  *
118413
118609
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-CustomTemplate.html#format Read more...}
118414
118610
  */
118415
- format?: "pdf" | "png32" | "png8" | "jpg" | "gif" | "eps" | "svg" | "svgz";
118611
+ format?: "jpg" | "png8" | "png32" | "pdf" | "gif" | "tiff" | "aix" | "eps" | "svg" | "svgz";
118416
118612
  }
118417
118613
 
118418
118614
  export interface CustomTemplateLayoutOptions {
@@ -118463,7 +118659,7 @@ declare namespace __esri {
118463
118659
  *
118464
118660
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#effectiveTemplateCustomTextElements Read more...}
118465
118661
  */
118466
- readonly effectiveTemplateCustomTextElements: any[];
118662
+ readonly effectiveTemplateCustomTextElements: HashMap<HashMap<string>[]>;
118467
118663
  /**
118468
118664
  * This option allows passing extra parameters to the print (export webmap) requests.
118469
118665
  *
@@ -118520,7 +118716,7 @@ declare namespace __esri {
118520
118716
  *
118521
118717
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#templateCustomTextElements Read more...}
118522
118718
  */
118523
- templateCustomTextElements: any[];
118719
+ templateCustomTextElements: HashMap<HashMap<string>[]>;
118524
118720
  /**
118525
118721
  * The service metadata that contains the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#format format}
118526
118722
  * and {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#layout layout} information for the printout.
@@ -118622,7 +118818,7 @@ declare namespace __esri {
118622
118818
  *
118623
118819
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#templateCustomTextElements Read more...}
118624
118820
  */
118625
- templateCustomTextElements?: any[];
118821
+ templateCustomTextElements?: HashMap<HashMap<string>[]>;
118626
118822
  /**
118627
118823
  * The time interval in milliseconds between each job status request sent to an asynchronous GP task.
118628
118824
  *
@@ -118679,7 +118875,7 @@ declare namespace __esri {
118679
118875
  *
118680
118876
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#dpi Read more...}
118681
118877
  */
118682
- dpi: string;
118878
+ dpi: number;
118683
118879
  /**
118684
118880
  * This property only applies when the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#layout layout} value is `map-only`.
118685
118881
  *
@@ -118702,7 +118898,7 @@ declare namespace __esri {
118702
118898
  *
118703
118899
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#format Read more...}
118704
118900
  */
118705
- format: "pdf" | "png32" | "png8" | "jpg" | "gif" | "eps" | "svg" | "svgz";
118901
+ format: "jpg" | "aix" | "eps" | "gif" | "pdf" | "png32" | "png8" | "svg" | "svgz" | "tiff";
118706
118902
  /**
118707
118903
  * Map height.
118708
118904
  *
@@ -118814,7 +119010,7 @@ declare namespace __esri {
118814
119010
  *
118815
119011
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#dpi Read more...}
118816
119012
  */
118817
- dpi?: string;
119013
+ dpi?: number;
118818
119014
  /**
118819
119015
  * This property only applies when the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#layout layout} value is `map-only`.
118820
119016
  *
@@ -118833,7 +119029,7 @@ declare namespace __esri {
118833
119029
  *
118834
119030
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#format Read more...}
118835
119031
  */
118836
- format?: "pdf" | "png32" | "png8" | "jpg" | "gif" | "eps" | "svg" | "svgz";
119032
+ format?: "jpg" | "aix" | "eps" | "gif" | "pdf" | "png32" | "png8" | "svg" | "svgz" | "tiff";
118837
119033
  /**
118838
119034
  * Map height.
118839
119035
  *
@@ -118916,10 +119112,10 @@ declare namespace __esri {
118916
119112
  */
118917
119113
  export interface FileLink {
118918
119114
  count: number;
118919
- error: string;
119115
+ error: Error;
118920
119116
  extension: string;
118921
119117
  name: string;
118922
- state: string;
119118
+ state: "ready" | "error" | "pending";
118923
119119
  url: string;
118924
119120
  }
118925
119121
 
@@ -119063,7 +119259,7 @@ declare namespace __esri {
119063
119259
  *
119064
119260
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ScaleRangeSlider.html#layer Read more...}
119065
119261
  */
119066
- layer: Layer;
119262
+ layer: Layer | Sublayer;
119067
119263
  /**
119068
119264
  * The maximum scale of the active scale range.
119069
119265
  *
@@ -119136,7 +119332,7 @@ declare namespace __esri {
119136
119332
  *
119137
119333
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ScaleRangeSlider.html#layer Read more...}
119138
119334
  */
119139
- layer?: LayerProperties;
119335
+ layer?: LayerProperties | (SublayerProperties & { type: "sublayer" });
119140
119336
  /**
119141
119337
  * The maximum scale of the active scale range.
119142
119338
  *
@@ -119281,7 +119477,7 @@ declare namespace __esri {
119281
119477
  *
119282
119478
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ScaleRangeSlider-ScaleRangeSliderViewModel.html#layer Read more...}
119283
119479
  */
119284
- layer: Layer;
119480
+ layer: Layer | Sublayer;
119285
119481
  /**
119286
119482
  * The maximum scale of the active scale range.
119287
119483
  *
@@ -119358,7 +119554,7 @@ declare namespace __esri {
119358
119554
  *
119359
119555
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ScaleRangeSlider-ScaleRangeSliderViewModel.html#layer Read more...}
119360
119556
  */
119361
- layer?: LayerProperties;
119557
+ layer?: LayerProperties | (SublayerProperties & { type: "sublayer" });
119362
119558
  /**
119363
119559
  * The maximum scale of the active scale range.
119364
119560
  *
@@ -119475,7 +119671,79 @@ declare namespace __esri {
119475
119671
  | "US"
119476
119672
  | "VE"
119477
119673
  | "VI"
119478
- | "ZA";
119674
+ | "ZA"
119675
+ | "ae"
119676
+ | "ar"
119677
+ | "at"
119678
+ | "au"
119679
+ | "be"
119680
+ | "bg"
119681
+ | "bo"
119682
+ | "br"
119683
+ | "ca"
119684
+ | "ch"
119685
+ | "ci"
119686
+ | "cl"
119687
+ | "cn"
119688
+ | "co"
119689
+ | "cr"
119690
+ | "cz"
119691
+ | "de"
119692
+ | "dk"
119693
+ | "ee"
119694
+ | "eg"
119695
+ | "es"
119696
+ | "fi"
119697
+ | "fr"
119698
+ | "gb"
119699
+ | "gl"
119700
+ | "gr"
119701
+ | "gt"
119702
+ | "hk"
119703
+ | "id"
119704
+ | "ie"
119705
+ | "il"
119706
+ | "in"
119707
+ | "iq"
119708
+ | "is"
119709
+ | "it"
119710
+ | "jp"
119711
+ | "ke"
119712
+ | "kr"
119713
+ | "kw"
119714
+ | "li"
119715
+ | "lt"
119716
+ | "lu"
119717
+ | "lv"
119718
+ | "ma"
119719
+ | "mg"
119720
+ | "ml"
119721
+ | "mo"
119722
+ | "mx"
119723
+ | "my"
119724
+ | "ni"
119725
+ | "nl"
119726
+ | "no"
119727
+ | "nz"
119728
+ | "pe"
119729
+ | "pl"
119730
+ | "pr"
119731
+ | "pt"
119732
+ | "ro"
119733
+ | "ru"
119734
+ | "rw"
119735
+ | "se"
119736
+ | "sg"
119737
+ | "sk"
119738
+ | "sr"
119739
+ | "sv"
119740
+ | "th"
119741
+ | "tn"
119742
+ | "tw"
119743
+ | "us"
119744
+ | "ve"
119745
+ | "vi"
119746
+ | "za";
119479
119747
 
119480
119748
  /**
119481
119749
  * The visible elements that are displayed within the widget.
@@ -119698,7 +119966,7 @@ declare namespace __esri {
119698
119966
  *
119699
119967
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Search.html#suggestions Read more...}
119700
119968
  */
119701
- readonly suggestions: SuggestResult[];
119969
+ readonly suggestions: SearchResultsSuggestions[];
119702
119970
  /**
119703
119971
  * Enable suggestions for the widget.
119704
119972
  *
@@ -121564,13 +121832,16 @@ declare namespace __esri {
121564
121832
  | "point"
121565
121833
  | "polyline"
121566
121834
  | "polygon"
121835
+ | "multipoint"
121836
+ | "mesh"
121567
121837
  | "circle"
121568
121838
  | "rectangle"
121569
121839
  | "move"
121570
121840
  | "transform"
121571
121841
  | "reshape"
121572
121842
  | "rectangle-selection"
121573
- | "lasso-selection";
121843
+ | "lasso-selection"
121844
+ | "custom-selection";
121574
121845
  /**
121575
121846
  * The tooltip currently being displayed for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Sketch-SketchViewModel.html#activeTool activeTool}.
121576
121847
  *
@@ -123516,14 +123787,14 @@ declare namespace __esri {
123516
123787
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Slider.html#TickConfig Read more...}
123517
123788
  */
123518
123789
  export interface TickConfig {
123519
- mode: "count" | "percent" | "position";
123790
+ mode: "percent" | "position" | "count" | "step";
123520
123791
  values: number | number[];
123521
123792
  labelsVisible?: boolean;
123522
123793
  tickCreatedFunction?: TickCreatedFunction;
123523
123794
  labelFormatFunction?: SliderLabelFormatter;
123524
123795
  }
123525
123796
 
123526
- export type TickCreatedFunction = (value: number, tickElement: HTMLElement, labelElement?: HTMLElement) => void;
123797
+ export type TickCreatedFunction = (value: number, tickElement?: HTMLElement, labelElement?: HTMLElement) => void;
123527
123798
 
123528
123799
  /**
123529
123800
  * The HTML Element nodes representing a single slider tick and its associated label.
@@ -123856,6 +124127,16 @@ declare namespace __esri {
123856
124127
  */
123857
124128
  viewModel: ClassedSizeSliderViewModel;
123858
124129
 
124130
+ /**
124131
+ * A convenience function used to update the
124132
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-ClassBreaksRenderer.html#classBreakInfos classBreakInfos}
124133
+ * of a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-ClassBreaksRenderer.html ClassBreaksRenderer} associated with this slider.
124134
+ *
124135
+ * @param breakInfos The classBreakInfos from a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-ClassBreaksRenderer.html ClassBreaksRenderer} instance to update based on the properties of the slider.
124136
+ *
124137
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-smartMapping-ClassedSizeSlider.html#updateClassBreakInfos Read more...}
124138
+ */
124139
+ updateClassBreakInfos(breakInfos: ClassBreakInfo[]): ClassBreakInfo[];
123859
124140
  /**
123860
124141
  * A convenience function used to update the properties a ClassedSizeSlider from the result
123861
124142
  * of the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-size.html#createClassBreaksRenderer createClassBreaksRenderer()} method.
@@ -123863,9 +124144,9 @@ declare namespace __esri {
123863
124144
  * @param rendererResult The result object from the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-size.html#createClassBreaksRenderer createClassBreaksRenderer} method.
123864
124145
  * @param histogramResult The result histogram object from the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-statistics-histogram.html#histogram histogram} method.
123865
124146
  *
123866
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-smartMapping-ClassedSizeSlider.html#updateClassBreakInfos Read more...}
124147
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-smartMapping-ClassedSizeSlider.html#updateFromRendererResult Read more...}
123867
124148
  */
123868
- updateClassBreakInfos(rendererResult: sizeClassBreaksRendererResult, histogramResult?: HistogramResult): void;
124149
+ updateFromRendererResult(rendererResult: sizeClassBreaksRendererResult, histogramResult?: HistogramResult): void;
123869
124150
 
123870
124151
  /**
123871
124152
  * A convenience function used to create a ClassedSizeSlider widget from the result
@@ -124940,7 +125221,7 @@ declare namespace __esri {
124940
125221
 
124941
125222
  export type SmartMappingSliderBaseLabelFormatter = (
124942
125223
  value: number,
124943
- type?: "average" | "min" | "max" | "value",
125224
+ type?: "average" | "min" | "max" | "tick" | "value",
124944
125225
  index?: number,
124945
125226
  ) => string;
124946
125227
 
@@ -125000,6 +125281,21 @@ declare namespace __esri {
125000
125281
 
125001
125282
  constructor(properties?: SmartMappingSliderViewModelProperties);
125002
125283
 
125284
+ /**
125285
+ * A function used to format user inputs.
125286
+ *
125287
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-smartMapping-SmartMappingSliderViewModel.html#inputFormatFunction Read more...}
125288
+ */
125289
+ inputFormatFunction: SmartMappingSliderBaseLabelFormatter;
125290
+ /**
125291
+ * A modified version of
125292
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Slider-SliderViewModel.html#labelFormatFunction SliderViewModel.labelFormatFunction},
125293
+ * which is a custom function used to format labels on the thumbs, min, max, and average
125294
+ * values.
125295
+ *
125296
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-smartMapping-SmartMappingSliderViewModel.html#labelFormatFunction Read more...}
125297
+ */
125298
+ labelFormatFunction: SmartMappingSliderBaseLabelFormatter;
125003
125299
  /**
125004
125300
  * Enables zooming on the slider.
125005
125301
  *
@@ -125028,6 +125324,21 @@ declare namespace __esri {
125028
125324
  }
125029
125325
 
125030
125326
  interface SmartMappingSliderViewModelProperties extends SliderViewModelProperties {
125327
+ /**
125328
+ * A function used to format user inputs.
125329
+ *
125330
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-smartMapping-SmartMappingSliderViewModel.html#inputFormatFunction Read more...}
125331
+ */
125332
+ inputFormatFunction?: SmartMappingSliderBaseLabelFormatter;
125333
+ /**
125334
+ * A modified version of
125335
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Slider-SliderViewModel.html#labelFormatFunction SliderViewModel.labelFormatFunction},
125336
+ * which is a custom function used to format labels on the thumbs, min, max, and average
125337
+ * values.
125338
+ *
125339
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-smartMapping-SmartMappingSliderViewModel.html#labelFormatFunction Read more...}
125340
+ */
125341
+ labelFormatFunction?: SmartMappingSliderBaseLabelFormatter;
125031
125342
  /**
125032
125343
  * Enables zooming on the slider.
125033
125344
  *
@@ -126912,9 +127223,9 @@ declare namespace __esri {
126912
127223
 
126913
127224
  export type DateLabelFormatter = (
126914
127225
  value: Date | Date[],
126915
- type?: "min" | "max" | "extent",
126916
- element?: HTMLElement,
126917
- layout?: "compact" | "wide",
127226
+ type: "min" | "max" | "extent",
127227
+ element: HTMLElement,
127228
+ layout: "compact" | "wide",
126918
127229
  ) => void;
126919
127230
 
126920
127231
  /**
@@ -127762,25 +128073,25 @@ declare namespace __esri {
127762
128073
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkAssociations.html#VisibleElements Read more...}
127763
128074
  */
127764
128075
  export interface UtilityNetworkAssociationsVisibleElements {
127765
- connectivityAssociationsSettings?: VisibleElementsConnectivityAssociationsSettings;
128076
+ connectivityAssociationsSettings: VisibleElementsConnectivityAssociationsSettings;
127766
128077
  maxAllowableAssociationsSlider: boolean;
127767
- structuralAttachmentAssociationsSettings?: VisibleElementsStructuralAttachmentAssociationsSettings;
128078
+ structuralAttachmentAssociationsSettings: VisibleElementsStructuralAttachmentAssociationsSettings;
127768
128079
  }
127769
128080
 
127770
128081
  export interface VisibleElementsConnectivityAssociationsSettings {
127771
- arrowsToggle?: boolean;
127772
- capSelect?: boolean;
127773
- colorPicker?: boolean;
127774
- stylePicker?: boolean;
127775
- widthInput?: boolean;
128082
+ arrowsToggle: boolean;
128083
+ capSelect: boolean;
128084
+ colorPicker: boolean;
128085
+ stylePicker: boolean;
128086
+ widthInput: boolean;
127776
128087
  }
127777
128088
 
127778
128089
  export interface VisibleElementsStructuralAttachmentAssociationsSettings {
127779
- arrowsToggle?: boolean;
127780
- capSelect?: boolean;
127781
- colorPicker?: boolean;
127782
- stylePicker?: boolean;
127783
- widthInput?: boolean;
128090
+ arrowsToggle: boolean;
128091
+ capSelect: boolean;
128092
+ colorPicker: boolean;
128093
+ stylePicker: boolean;
128094
+ widthInput: boolean;
127784
128095
  }
127785
128096
 
127786
128097
  export class UtilityNetworkTrace extends Widget {
@@ -128509,7 +128820,7 @@ declare namespace __esri {
128509
128820
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTrace-UtilityNetworkTraceViewModel.html#DisplayField Read more...}
128510
128821
  */
128511
128822
  export interface DisplayField {
128512
- field: string;
128823
+ field?: string;
128513
128824
  value: string;
128514
128825
  }
128515
128826
 
@@ -128540,14 +128851,14 @@ declare namespace __esri {
128540
128851
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTrace-UtilityNetworkTraceViewModel.html#FlagProperty Read more...}
128541
128852
  */
128542
128853
  export interface FlagProperty {
128543
- allTerminals: TerminalConfiguration;
128544
- details: any;
128545
- displayField: DisplayField;
128546
- id: number;
128547
- mapGraphic: Graphic;
128548
- mapPoint: Point;
128549
- selectedTerminals: number[];
128550
- type: string;
128854
+ allTerminals?: TerminalConfiguration;
128855
+ details?: any;
128856
+ displayValue?: DisplayField;
128857
+ id?: number;
128858
+ mapGraphic?: Graphic;
128859
+ mapPoint?: Point;
128860
+ selectedTerminals?: number[];
128861
+ type: "starting-point" | "barrier";
128551
128862
  }
128552
128863
 
128553
128864
  /**
@@ -128592,7 +128903,7 @@ declare namespace __esri {
128592
128903
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTrace-UtilityNetworkTraceViewModel.html#TraceItem Read more...}
128593
128904
  */
128594
128905
  export interface TraceItem {
128595
- selected: boolean;
128906
+ selected?: boolean;
128596
128907
  }
128597
128908
 
128598
128909
  /**
@@ -128601,8 +128912,8 @@ declare namespace __esri {
128601
128912
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTrace-UtilityNetworkTraceViewModel.html#TraceResultExtend Read more...}
128602
128913
  */
128603
128914
  export interface TraceResultExtend {
128604
- TraceItem: TraceItem;
128605
- TraceResult: TraceResult;
128915
+ trace: TraceItem;
128916
+ results: TraceResult;
128606
128917
  selectionEnabled: boolean;
128607
128918
  graphicEnabled: boolean;
128608
128919
  graphicColor: GraphicColor;
@@ -128647,10 +128958,10 @@ declare namespace __esri {
128647
128958
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTrace.html#InputSetting Read more...}
128648
128959
  */
128649
128960
  export interface InputSetting {
128650
- type: "starting-point" | "barrier";
128961
+ type: string;
128651
128962
  label: string;
128652
128963
  description: string;
128653
- symbol: SimpleMarkerSymbol | PictureMarkerSymbol;
128964
+ symbol?: SimpleMarkerSymbol | PictureMarkerSymbol;
128654
128965
  }
128655
128966
 
128656
128967
  export interface UtilityNetworkTraceRemoveResultAreaEvent {
@@ -129161,7 +129472,7 @@ declare namespace __esri {
129161
129472
  *
129162
129473
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ValuePicker-ValuePickerSlider.html#reversed Read more...}
129163
129474
  */
129164
- reversed: number;
129475
+ reversed: boolean;
129165
129476
  /**
129166
129477
  * Positions along the slider that the thumb will snap to when interacted with.
129167
129478
  *
@@ -129262,7 +129573,7 @@ declare namespace __esri {
129262
129573
  *
129263
129574
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-VersionManagement-VersionManagementViewModel.html#state Read more...}
129264
129575
  */
129265
- readonly state: "disabled" | "executing" | "failed" | "loading" | "ready";
129576
+ readonly state: "loading" | "failed" | "ready" | "disabled" | "success" | "executing";
129266
129577
  /**
129267
129578
  * Map of Service URLs and logged in users.
129268
129579
  *
@@ -129615,7 +129926,7 @@ declare namespace __esri {
129615
129926
  *
129616
129927
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-VideoPlayer-VideoPlayerViewModel.html#followingMode Read more...}
129617
129928
  */
129618
- followingMode: "follow-sensor" | "follow-frame" | "follow-both";
129929
+ followingMode: "follow-sensor" | "follow-frame" | "follow-both" | "none";
129619
129930
  /**
129620
129931
  * The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html VideoLayer} to play.
129621
129932
  *
@@ -129763,7 +130074,7 @@ declare namespace __esri {
129763
130074
  *
129764
130075
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-VideoPlayer-VideoPlayerViewModel.html#followingMode Read more...}
129765
130076
  */
129766
- followingMode?: "follow-sensor" | "follow-frame" | "follow-both";
130077
+ followingMode?: "follow-sensor" | "follow-frame" | "follow-both" | "none";
129767
130078
  /**
129768
130079
  * The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html VideoLayer} to play.
129769
130080
  *
@@ -129865,7 +130176,7 @@ declare namespace __esri {
129865
130176
  *
129866
130177
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Weather-WeatherViewModel.html#state Read more...}
129867
130178
  */
129868
- readonly state: "disabled" | "ready";
130179
+ readonly state: "disabled" | "ready" | "error";
129869
130180
  /**
129870
130181
  * A reference to the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html View}.
129871
130182
  *
@@ -138844,6 +139155,11 @@ declare module "esri/applications/Components/reactiveUtils" {
138844
139155
  export = ComponentsReactiveUtils;
138845
139156
  }
138846
139157
 
139158
+ declare module "esri/applications/Components/sceneViewUtils" {
139159
+ import sceneViewUtils = __esri.sceneViewUtils;
139160
+ export = sceneViewUtils;
139161
+ }
139162
+
138847
139163
  declare module "esri/applications/Components/SelectionOperation" {
138848
139164
  import SelectionOperation = __esri.SelectionOperation;
138849
139165
  export = SelectionOperation;