@arcgis/core-adapter 4.32.0-next.4
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/.turbo/turbo-build.log +3 -0
- package/LICENSE.md +13 -0
- package/README.md +21 -0
- package/dist/index.cjs +12941 -0
- package/dist/index.d.cts +1702 -0
- package/dist/index.d.ts +1702 -0
- package/dist/index.js +11222 -0
- package/package.json +47 -0
- package/scripts/generator.ts +419 -0
- package/scripts/update-adapter-typings.ts +71 -0
- package/src/index.ts +11241 -0
- package/support/api-reference-esm-imports.json +925 -0
- package/support/arcgis.d.ts +143032 -0
- package/tsconfig.json +5 -0
- package/tsup.config.ts +12 -0
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,1702 @@
|
|
|
1
|
+
declare global {
|
|
2
|
+
interface Window {
|
|
3
|
+
$arcgis: {
|
|
4
|
+
import: <T>(modules: string | string[], forceESM?: boolean) => Promise<T>;
|
|
5
|
+
};
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* Load an undocumented module respecting the current environment (AMD or ESM).
|
|
10
|
+
* The module type will certainly be `any` as it is not documented.
|
|
11
|
+
* For ESM, if the module exports a default, it will be returned, otherwise the module itself will be returned.
|
|
12
|
+
* @param modulePath - The path to the module to load, example: "@arcgis/core/Map"
|
|
13
|
+
* @param deferredImport - A function that should call import() and return the module, example: () => import("@arcgis/core/Map")
|
|
14
|
+
* @returns - Promise that resolves to the module
|
|
15
|
+
*/
|
|
16
|
+
declare function loadUndocumentedModule<T>(modulePath: string, deferredImport: () => Promise<T>): Promise<T>;
|
|
17
|
+
declare function importIdentityIdentityManager(): Promise<__esri.IdentityManager>;
|
|
18
|
+
declare function importBasemap(): Promise<typeof __esri.Basemap>;
|
|
19
|
+
declare function newBasemap(properties: __esri.BasemapProperties): Promise<__esri.Basemap>;
|
|
20
|
+
declare function importCamera(): Promise<typeof __esri.Camera>;
|
|
21
|
+
declare function newCamera(properties: __esri.CameraProperties): Promise<__esri.Camera>;
|
|
22
|
+
declare function importCameraLayout(): Promise<typeof __esri.CameraLayout>;
|
|
23
|
+
declare function newCameraLayout(properties: __esri.CameraLayoutProperties): Promise<__esri.CameraLayout>;
|
|
24
|
+
declare function importColor(): Promise<typeof __esri.Color>;
|
|
25
|
+
declare function newColor(color: any): Promise<__esri.Color>;
|
|
26
|
+
declare function importAnalysisAreaMeasurementAnalysis(): Promise<typeof __esri.AreaMeasurementAnalysis>;
|
|
27
|
+
declare function newAnalysisAreaMeasurementAnalysis(properties: __esri.AreaMeasurementAnalysisProperties): Promise<__esri.AreaMeasurementAnalysis>;
|
|
28
|
+
declare function importAnalysisDimensionAnalysis(): Promise<typeof __esri.DimensionAnalysis>;
|
|
29
|
+
declare function newAnalysisDimensionAnalysis(properties: __esri.DimensionAnalysisProperties): Promise<__esri.DimensionAnalysis>;
|
|
30
|
+
declare function importAnalysisDimensionSimpleStyle(): Promise<typeof __esri.DimensionSimpleStyle>;
|
|
31
|
+
declare function newAnalysisDimensionSimpleStyle(properties: __esri.DimensionSimpleStyleProperties): Promise<__esri.DimensionSimpleStyle>;
|
|
32
|
+
declare function importAnalysisDirectLineMeasurementAnalysis(): Promise<typeof __esri.DirectLineMeasurementAnalysis>;
|
|
33
|
+
declare function newAnalysisDirectLineMeasurementAnalysis(properties: __esri.DirectLineMeasurementAnalysisProperties): Promise<__esri.DirectLineMeasurementAnalysis>;
|
|
34
|
+
declare function importAnalysisLengthDimension(): Promise<typeof __esri.LengthDimension>;
|
|
35
|
+
declare function newAnalysisLengthDimension(properties: __esri.LengthDimensionProperties): Promise<__esri.LengthDimension>;
|
|
36
|
+
declare function importAnalysisLineOfSightAnalysis(): Promise<typeof __esri.LineOfSightAnalysis>;
|
|
37
|
+
declare function newAnalysisLineOfSightAnalysis(properties: __esri.LineOfSightAnalysisProperties): Promise<__esri.LineOfSightAnalysis>;
|
|
38
|
+
declare function importAnalysisLineOfSightAnalysisObserver(): Promise<typeof __esri.LineOfSightAnalysisObserver>;
|
|
39
|
+
declare function newAnalysisLineOfSightAnalysisObserver(properties: __esri.LineOfSightAnalysisObserverProperties): Promise<__esri.LineOfSightAnalysisObserver>;
|
|
40
|
+
declare function importAnalysisLineOfSightAnalysisTarget(): Promise<typeof __esri.LineOfSightAnalysisTarget>;
|
|
41
|
+
declare function newAnalysisLineOfSightAnalysisTarget(properties: __esri.LineOfSightAnalysisTargetProperties): Promise<__esri.LineOfSightAnalysisTarget>;
|
|
42
|
+
declare function importAnalysisSliceAnalysis(): Promise<typeof __esri.SliceAnalysis>;
|
|
43
|
+
declare function newAnalysisSliceAnalysis(properties: __esri.SliceAnalysisProperties): Promise<__esri.SliceAnalysis>;
|
|
44
|
+
declare function importAnalysisSlicePlane(): Promise<typeof __esri.SlicePlane>;
|
|
45
|
+
declare function newAnalysisSlicePlane(properties: __esri.SlicePlaneProperties): Promise<__esri.SlicePlane>;
|
|
46
|
+
declare function importAnalysisViewshed(): Promise<typeof __esri.Viewshed>;
|
|
47
|
+
declare function newAnalysisViewshed(properties: __esri.ViewshedProperties): Promise<__esri.Viewshed>;
|
|
48
|
+
declare function importAnalysisViewshedAnalysis(): Promise<typeof __esri.ViewshedAnalysis>;
|
|
49
|
+
declare function newAnalysisViewshedAnalysis(properties: __esri.ViewshedAnalysisProperties): Promise<__esri.ViewshedAnalysis>;
|
|
50
|
+
declare function importCoreAccessor(): Promise<typeof __esri.Accessor>;
|
|
51
|
+
declare function newCoreAccessor(obj: any): Promise<__esri.Accessor>;
|
|
52
|
+
declare function importCoreCollection(): Promise<typeof __esri.Collection>;
|
|
53
|
+
declare function newCoreCollection(values: any[] | __esri.Collection<any> | __esri.CollectionPropertiesBase<any>): Promise<__esri.Collection>;
|
|
54
|
+
declare function importCoreError(): Promise<typeof __esri.Error>;
|
|
55
|
+
declare function newCoreError(name: string, message: string, details: any): Promise<__esri.Error>;
|
|
56
|
+
declare function importCoreHandles(): Promise<typeof __esri.Handles>;
|
|
57
|
+
declare function newCoreHandles(): Promise<__esri.Handles>;
|
|
58
|
+
declare function importCoreWorkersConnection(): Promise<typeof __esri.Connection>;
|
|
59
|
+
declare function newCoreWorkersConnection(): Promise<__esri.Connection>;
|
|
60
|
+
declare function importFormElementsAttachmentElement(): Promise<typeof __esri.AttachmentElement>;
|
|
61
|
+
declare function newFormElementsAttachmentElement(properties: __esri.AttachmentElementProperties): Promise<__esri.AttachmentElement>;
|
|
62
|
+
declare function importFormElementsElement(): Promise<typeof __esri.Element>;
|
|
63
|
+
declare function newFormElementsElement(properties: __esri.ElementProperties): Promise<__esri.Element>;
|
|
64
|
+
declare function importFormElementsFieldElement(): Promise<typeof __esri.FieldElement>;
|
|
65
|
+
declare function newFormElementsFieldElement(properties: __esri.FieldElementProperties): Promise<__esri.FieldElement>;
|
|
66
|
+
declare function importFormElementsGroupElement(): Promise<typeof __esri.GroupElement>;
|
|
67
|
+
declare function newFormElementsGroupElement(properties: __esri.GroupElementProperties): Promise<__esri.GroupElement>;
|
|
68
|
+
declare function importFormElementsRelationshipElement(): Promise<typeof __esri.RelationshipElement>;
|
|
69
|
+
declare function newFormElementsRelationshipElement(properties: __esri.RelationshipElementProperties): Promise<__esri.RelationshipElement>;
|
|
70
|
+
declare function importFormElementsTextElement(): Promise<typeof __esri.TextElement>;
|
|
71
|
+
declare function newFormElementsTextElement(properties: __esri.TextElementProperties): Promise<__esri.TextElement>;
|
|
72
|
+
declare function importFormElementsInputsBarcodeScannerInput(): Promise<typeof __esri.BarcodeScannerInput>;
|
|
73
|
+
declare function newFormElementsInputsBarcodeScannerInput(properties: __esri.BarcodeScannerInputProperties): Promise<__esri.BarcodeScannerInput>;
|
|
74
|
+
declare function importFormElementsInputsComboBoxInput(): Promise<typeof __esri.ComboBoxInput>;
|
|
75
|
+
declare function newFormElementsInputsComboBoxInput(properties: __esri.ComboBoxInputProperties): Promise<__esri.ComboBoxInput>;
|
|
76
|
+
declare function importFormElementsInputsDatePickerInput(): Promise<typeof __esri.DatePickerInput>;
|
|
77
|
+
declare function newFormElementsInputsDatePickerInput(properties: __esri.DatePickerInputProperties): Promise<__esri.DatePickerInput>;
|
|
78
|
+
declare function importFormElementsInputsDateTimeOffsetPickerInput(): Promise<typeof __esri.DateTimeOffsetPickerInput>;
|
|
79
|
+
declare function newFormElementsInputsDateTimeOffsetPickerInput(properties: __esri.DateTimeOffsetPickerInputProperties): Promise<__esri.DateTimeOffsetPickerInput>;
|
|
80
|
+
declare function importFormElementsInputsDateTimePickerInput(): Promise<typeof __esri.DateTimePickerInput>;
|
|
81
|
+
declare function newFormElementsInputsDateTimePickerInput(properties: __esri.DateTimePickerInputProperties): Promise<__esri.DateTimePickerInput>;
|
|
82
|
+
declare function importFormElementsInputsRadioButtonsInput(): Promise<typeof __esri.RadioButtonsInput>;
|
|
83
|
+
declare function newFormElementsInputsRadioButtonsInput(properties: __esri.RadioButtonsInputProperties): Promise<__esri.RadioButtonsInput>;
|
|
84
|
+
declare function importFormElementsInputsSwitchInput(): Promise<typeof __esri.SwitchInput>;
|
|
85
|
+
declare function newFormElementsInputsSwitchInput(properties: __esri.SwitchInputProperties): Promise<__esri.SwitchInput>;
|
|
86
|
+
declare function importFormElementsInputsTextAreaInput(): Promise<typeof __esri.TextAreaInput>;
|
|
87
|
+
declare function newFormElementsInputsTextAreaInput(properties: __esri.TextAreaInputProperties): Promise<__esri.TextAreaInput>;
|
|
88
|
+
declare function importFormElementsInputsTextBoxInput(): Promise<typeof __esri.TextBoxInput>;
|
|
89
|
+
declare function newFormElementsInputsTextBoxInput(properties: __esri.TextBoxInputProperties): Promise<__esri.TextBoxInput>;
|
|
90
|
+
declare function importFormElementsInputsTimePickerInput(): Promise<typeof __esri.TimePickerInput>;
|
|
91
|
+
declare function newFormElementsInputsTimePickerInput(properties: __esri.TimePickerInputProperties): Promise<__esri.TimePickerInput>;
|
|
92
|
+
declare function importFormElementsInputsAttachmentsAttachmentInput(): Promise<typeof __esri.AttachmentInput>;
|
|
93
|
+
declare function newFormElementsInputsAttachmentsAttachmentInput(properties: __esri.AttachmentInputProperties): Promise<__esri.AttachmentInput>;
|
|
94
|
+
declare function importFormElementsInputsAttachmentsAudioInput(): Promise<typeof __esri.AudioInput>;
|
|
95
|
+
declare function newFormElementsInputsAttachmentsAudioInput(properties: __esri.AudioInputProperties): Promise<__esri.AudioInput>;
|
|
96
|
+
declare function importFormElementsInputsAttachmentsDocumentInput(): Promise<typeof __esri.DocumentInput>;
|
|
97
|
+
declare function newFormElementsInputsAttachmentsDocumentInput(properties: __esri.DocumentInputProperties): Promise<__esri.DocumentInput>;
|
|
98
|
+
declare function importFormElementsInputsAttachmentsImageInput(): Promise<typeof __esri.ImageInput>;
|
|
99
|
+
declare function newFormElementsInputsAttachmentsImageInput(properties: __esri.ImageInputProperties): Promise<__esri.ImageInput>;
|
|
100
|
+
declare function importFormElementsInputsAttachmentsSignatureInput(): Promise<typeof __esri.SignatureInput>;
|
|
101
|
+
declare function newFormElementsInputsAttachmentsSignatureInput(properties: __esri.SignatureInputProperties): Promise<__esri.SignatureInput>;
|
|
102
|
+
declare function importFormElementsInputsAttachmentsVideoInput(): Promise<typeof __esri.VideoInput>;
|
|
103
|
+
declare function newFormElementsInputsAttachmentsVideoInput(properties: __esri.VideoInputProperties): Promise<__esri.VideoInput>;
|
|
104
|
+
declare function importFormExpressionInfo(): Promise<typeof __esri.ExpressionInfo>;
|
|
105
|
+
declare function newFormExpressionInfo(properties: __esri.ExpressionInfoProperties): Promise<__esri.ExpressionInfo>;
|
|
106
|
+
declare function importFormFormTemplate(): Promise<typeof __esri.FormTemplate>;
|
|
107
|
+
declare function newFormFormTemplate(properties: __esri.FormTemplateProperties): Promise<__esri.FormTemplate>;
|
|
108
|
+
declare function importGeometryCircle(): Promise<typeof __esri.Circle>;
|
|
109
|
+
declare function newGeometryCircle(properties: __esri.CircleProperties): Promise<__esri.Circle>;
|
|
110
|
+
declare function importGeometryExtent(): Promise<typeof __esri.Extent>;
|
|
111
|
+
declare function newGeometryExtent(properties: __esri.ExtentProperties): Promise<__esri.Extent>;
|
|
112
|
+
declare function importGeometryGeometry(): Promise<typeof __esri.Geometry>;
|
|
113
|
+
declare function newGeometryGeometry(properties: __esri.GeometryProperties): Promise<__esri.Geometry>;
|
|
114
|
+
declare function importGeometryHeightModelInfo(): Promise<typeof __esri.HeightModelInfo>;
|
|
115
|
+
declare function newGeometryHeightModelInfo(properties: __esri.HeightModelInfoProperties): Promise<__esri.HeightModelInfo>;
|
|
116
|
+
declare function importGeometryMesh(): Promise<typeof __esri.Mesh>;
|
|
117
|
+
declare function newGeometryMesh(properties: __esri.MeshProperties): Promise<__esri.Mesh>;
|
|
118
|
+
declare function importGeometryMultipoint(): Promise<typeof __esri.Multipoint>;
|
|
119
|
+
declare function newGeometryMultipoint(properties: __esri.MultipointProperties): Promise<__esri.Multipoint>;
|
|
120
|
+
declare function importGeometryPoint(): Promise<typeof __esri.Point>;
|
|
121
|
+
declare function newGeometryPoint(properties: __esri.PointProperties): Promise<__esri.Point>;
|
|
122
|
+
declare function importGeometryPolygon(): Promise<typeof __esri.Polygon>;
|
|
123
|
+
declare function newGeometryPolygon(properties: __esri.PolygonProperties): Promise<__esri.Polygon>;
|
|
124
|
+
declare function importGeometryPolyline(): Promise<typeof __esri.Polyline>;
|
|
125
|
+
declare function newGeometryPolyline(properties: __esri.PolylineProperties): Promise<__esri.Polyline>;
|
|
126
|
+
declare function importGeometrySpatialReference(): Promise<typeof __esri.SpatialReference>;
|
|
127
|
+
declare function newGeometrySpatialReference(properties: __esri.SpatialReferenceProperties): Promise<__esri.SpatialReference>;
|
|
128
|
+
declare function importGeometrySupportGeographicTransformation(): Promise<typeof __esri.GeographicTransformation>;
|
|
129
|
+
declare function newGeometrySupportGeographicTransformation(properties: any): Promise<__esri.GeographicTransformation>;
|
|
130
|
+
declare function importGeometrySupportGeographicTransformationStep(): Promise<typeof __esri.GeographicTransformationStep>;
|
|
131
|
+
declare function newGeometrySupportGeographicTransformationStep(properties: any): Promise<__esri.GeographicTransformationStep>;
|
|
132
|
+
declare function importGeometrySupportMeshComponent(): Promise<typeof __esri.MeshComponent>;
|
|
133
|
+
declare function newGeometrySupportMeshComponent(properties: __esri.MeshComponentProperties): Promise<__esri.MeshComponent>;
|
|
134
|
+
declare function importGeometrySupportMeshGeoreferencedVertexSpace(): Promise<typeof __esri.MeshGeoreferencedVertexSpace>;
|
|
135
|
+
declare function newGeometrySupportMeshGeoreferencedVertexSpace(properties: __esri.MeshGeoreferencedVertexSpaceProperties): Promise<__esri.MeshGeoreferencedVertexSpace>;
|
|
136
|
+
declare function importGeometrySupportMeshLocalVertexSpace(): Promise<typeof __esri.MeshLocalVertexSpace>;
|
|
137
|
+
declare function newGeometrySupportMeshLocalVertexSpace(properties: __esri.MeshLocalVertexSpaceProperties): Promise<__esri.MeshLocalVertexSpace>;
|
|
138
|
+
declare function importGeometrySupportMeshMaterial(): Promise<typeof __esri.MeshMaterial>;
|
|
139
|
+
declare function newGeometrySupportMeshMaterial(properties: __esri.MeshMaterialProperties): Promise<__esri.MeshMaterial>;
|
|
140
|
+
declare function importGeometrySupportMeshMaterialMetallicRoughness(): Promise<typeof __esri.MeshMaterialMetallicRoughness>;
|
|
141
|
+
declare function newGeometrySupportMeshMaterialMetallicRoughness(properties: __esri.MeshMaterialMetallicRoughnessProperties): Promise<__esri.MeshMaterialMetallicRoughness>;
|
|
142
|
+
declare function importGeometrySupportMeshTexture(): Promise<typeof __esri.MeshTexture>;
|
|
143
|
+
declare function newGeometrySupportMeshTexture(properties: __esri.MeshTextureProperties): Promise<__esri.MeshTexture>;
|
|
144
|
+
declare function importGeometrySupportMeshTextureTransform(): Promise<typeof __esri.MeshTextureTransform>;
|
|
145
|
+
declare function newGeometrySupportMeshTextureTransform(properties: __esri.MeshTextureTransformProperties): Promise<__esri.MeshTextureTransform>;
|
|
146
|
+
declare function importGeometrySupportMeshTransform(): Promise<typeof __esri.MeshTransform>;
|
|
147
|
+
declare function newGeometrySupportMeshTransform(properties: __esri.MeshTransformProperties): Promise<__esri.MeshTransform>;
|
|
148
|
+
declare function importGraphic(): Promise<typeof __esri.Graphic>;
|
|
149
|
+
declare function newGraphic(properties: __esri.GraphicProperties): Promise<__esri.Graphic>;
|
|
150
|
+
declare function importGround(): Promise<typeof __esri.Ground>;
|
|
151
|
+
declare function newGround(properties: __esri.GroundProperties): Promise<__esri.Ground>;
|
|
152
|
+
declare function importIdentityCredential(): Promise<typeof __esri.Credential>;
|
|
153
|
+
declare function newIdentityCredential(properties: __esri.CredentialProperties): Promise<__esri.Credential>;
|
|
154
|
+
declare function importIdentityOAuthInfo(): Promise<typeof __esri.OAuthInfo>;
|
|
155
|
+
declare function newIdentityOAuthInfo(properties: __esri.OAuthInfoProperties): Promise<__esri.OAuthInfo>;
|
|
156
|
+
declare function importIdentityServerInfo(): Promise<typeof __esri.ServerInfo>;
|
|
157
|
+
declare function newIdentityServerInfo(properties: __esri.ServerInfoProperties): Promise<__esri.ServerInfo>;
|
|
158
|
+
declare function importLayersBaseDynamicLayer(): Promise<typeof __esri.BaseDynamicLayer>;
|
|
159
|
+
declare function newLayersBaseDynamicLayer(properties: __esri.BaseDynamicLayerProperties): Promise<__esri.BaseDynamicLayer>;
|
|
160
|
+
declare function importLayersBaseElevationLayer(): Promise<typeof __esri.BaseElevationLayer>;
|
|
161
|
+
declare function newLayersBaseElevationLayer(properties: __esri.BaseElevationLayerProperties): Promise<__esri.BaseElevationLayer>;
|
|
162
|
+
declare function importLayersBaseTileLayer(): Promise<typeof __esri.BaseTileLayer>;
|
|
163
|
+
declare function newLayersBaseTileLayer(properties: __esri.BaseTileLayerProperties): Promise<__esri.BaseTileLayer>;
|
|
164
|
+
declare function importLayersBingMapsLayer(): Promise<typeof __esri.BingMapsLayer>;
|
|
165
|
+
declare function newLayersBingMapsLayer(properties: __esri.BingMapsLayerProperties): Promise<__esri.BingMapsLayer>;
|
|
166
|
+
declare function importLayersBuildingSceneLayer(): Promise<typeof __esri.BuildingSceneLayer>;
|
|
167
|
+
declare function newLayersBuildingSceneLayer(properties: __esri.BuildingSceneLayerProperties): Promise<__esri.BuildingSceneLayer>;
|
|
168
|
+
declare function importLayersBuildingSublayersBuildingComponentSublayer(): Promise<typeof __esri.BuildingComponentSublayer>;
|
|
169
|
+
declare function newLayersBuildingSublayersBuildingComponentSublayer(properties: __esri.BuildingComponentSublayerProperties): Promise<__esri.BuildingComponentSublayer>;
|
|
170
|
+
declare function importLayersBuildingSublayersBuildingGroupSublayer(): Promise<typeof __esri.BuildingGroupSublayer>;
|
|
171
|
+
declare function newLayersBuildingSublayersBuildingGroupSublayer(properties: __esri.BuildingGroupSublayerProperties): Promise<__esri.BuildingGroupSublayer>;
|
|
172
|
+
declare function importLayersBuildingSublayersBuildingSublayer(): Promise<typeof __esri.BuildingSublayer>;
|
|
173
|
+
declare function newLayersBuildingSublayersBuildingSublayer(properties: __esri.BuildingSublayerProperties): Promise<__esri.BuildingSublayer>;
|
|
174
|
+
declare function importLayersCatalogLayer(): Promise<typeof __esri.CatalogLayer>;
|
|
175
|
+
declare function newLayersCatalogLayer(properties: __esri.CatalogLayerProperties): Promise<__esri.CatalogLayer>;
|
|
176
|
+
declare function importLayersCatalogCatalogDynamicGroupLayer(): Promise<typeof __esri.CatalogDynamicGroupLayer>;
|
|
177
|
+
declare function newLayersCatalogCatalogDynamicGroupLayer(properties: __esri.CatalogDynamicGroupLayerProperties): Promise<__esri.CatalogDynamicGroupLayer>;
|
|
178
|
+
declare function importLayersCatalogCatalogFootprintLayer(): Promise<typeof __esri.CatalogFootprintLayer>;
|
|
179
|
+
declare function newLayersCatalogCatalogFootprintLayer(properties: __esri.CatalogFootprintLayerProperties): Promise<__esri.CatalogFootprintLayer>;
|
|
180
|
+
declare function importLayersCSVLayer(): Promise<typeof __esri.CSVLayer>;
|
|
181
|
+
declare function newLayersCSVLayer(properties: __esri.CSVLayerProperties): Promise<__esri.CSVLayer>;
|
|
182
|
+
declare function importLayersDimensionLayer(): Promise<typeof __esri.DimensionLayer>;
|
|
183
|
+
declare function newLayersDimensionLayer(properties: __esri.DimensionLayerProperties): Promise<__esri.DimensionLayer>;
|
|
184
|
+
declare function importLayersElevationLayer(): Promise<typeof __esri.ElevationLayer>;
|
|
185
|
+
declare function newLayersElevationLayer(properties: __esri.ElevationLayerProperties): Promise<__esri.ElevationLayer>;
|
|
186
|
+
declare function importLayersFeatureLayer(): Promise<typeof __esri.FeatureLayer>;
|
|
187
|
+
declare function newLayersFeatureLayer(properties: __esri.FeatureLayerProperties): Promise<__esri.FeatureLayer>;
|
|
188
|
+
declare function importLayersGeoJSONLayer(): Promise<typeof __esri.GeoJSONLayer>;
|
|
189
|
+
declare function newLayersGeoJSONLayer(properties: __esri.GeoJSONLayerProperties): Promise<__esri.GeoJSONLayer>;
|
|
190
|
+
declare function importLayersGeoRSSLayer(): Promise<typeof __esri.GeoRSSLayer>;
|
|
191
|
+
declare function newLayersGeoRSSLayer(properties: __esri.GeoRSSLayerProperties): Promise<__esri.GeoRSSLayer>;
|
|
192
|
+
declare function importLayersGraphicsLayer(): Promise<typeof __esri.GraphicsLayer>;
|
|
193
|
+
declare function newLayersGraphicsLayer(properties: __esri.GraphicsLayerProperties): Promise<__esri.GraphicsLayer>;
|
|
194
|
+
declare function importLayersGroupLayer(): Promise<typeof __esri.GroupLayer>;
|
|
195
|
+
declare function newLayersGroupLayer(properties: __esri.GroupLayerProperties): Promise<__esri.GroupLayer>;
|
|
196
|
+
declare function importLayersImageryLayer(): Promise<typeof __esri.ImageryLayer>;
|
|
197
|
+
declare function newLayersImageryLayer(properties: __esri.ImageryLayerProperties): Promise<__esri.ImageryLayer>;
|
|
198
|
+
declare function importLayersImageryTileLayer(): Promise<typeof __esri.ImageryTileLayer>;
|
|
199
|
+
declare function newLayersImageryTileLayer(properties: __esri.ImageryTileLayerProperties): Promise<__esri.ImageryTileLayer>;
|
|
200
|
+
declare function importLayersIntegratedMeshLayer(): Promise<typeof __esri.IntegratedMeshLayer>;
|
|
201
|
+
declare function newLayersIntegratedMeshLayer(properties: __esri.IntegratedMeshLayerProperties): Promise<__esri.IntegratedMeshLayer>;
|
|
202
|
+
declare function importLayersIntegratedMesh3DTilesLayer(): Promise<typeof __esri.IntegratedMesh3DTilesLayer>;
|
|
203
|
+
declare function newLayersIntegratedMesh3DTilesLayer(properties: __esri.IntegratedMesh3DTilesLayerProperties): Promise<__esri.IntegratedMesh3DTilesLayer>;
|
|
204
|
+
declare function importLayersKMLLayer(): Promise<typeof __esri.KMLLayer>;
|
|
205
|
+
declare function newLayersKMLLayer(properties: __esri.KMLLayerProperties): Promise<__esri.KMLLayer>;
|
|
206
|
+
declare function importLayersKnowledgeGraphLayer(): Promise<typeof __esri.KnowledgeGraphLayer>;
|
|
207
|
+
declare function newLayersKnowledgeGraphLayer(properties: __esri.KnowledgeGraphLayerProperties): Promise<__esri.KnowledgeGraphLayer>;
|
|
208
|
+
declare function importLayersKnowledgeGraphKnowledgeGraphSublayer(): Promise<typeof __esri.KnowledgeGraphSublayer>;
|
|
209
|
+
declare function newLayersKnowledgeGraphKnowledgeGraphSublayer(properties: __esri.KnowledgeGraphSublayerProperties): Promise<__esri.KnowledgeGraphSublayer>;
|
|
210
|
+
declare function importLayersLayer(): Promise<typeof __esri.Layer>;
|
|
211
|
+
declare function newLayersLayer(properties: __esri.LayerProperties): Promise<__esri.Layer>;
|
|
212
|
+
declare function importLayersLineOfSightLayer(): Promise<typeof __esri.LineOfSightLayer>;
|
|
213
|
+
declare function newLayersLineOfSightLayer(properties: __esri.LineOfSightLayerProperties): Promise<__esri.LineOfSightLayer>;
|
|
214
|
+
declare function importLayersMapImageLayer(): Promise<typeof __esri.MapImageLayer>;
|
|
215
|
+
declare function newLayersMapImageLayer(properties: __esri.MapImageLayerProperties): Promise<__esri.MapImageLayer>;
|
|
216
|
+
declare function importLayersMapNotesLayer(): Promise<typeof __esri.MapNotesLayer>;
|
|
217
|
+
declare function newLayersMapNotesLayer(properties: __esri.MapNotesLayerProperties): Promise<__esri.MapNotesLayer>;
|
|
218
|
+
declare function importLayersMediaLayer(): Promise<typeof __esri.MediaLayer>;
|
|
219
|
+
declare function newLayersMediaLayer(properties: __esri.MediaLayerProperties): Promise<__esri.MediaLayer>;
|
|
220
|
+
declare function importLayersOGCFeatureLayer(): Promise<typeof __esri.OGCFeatureLayer>;
|
|
221
|
+
declare function newLayersOGCFeatureLayer(properties: __esri.OGCFeatureLayerProperties): Promise<__esri.OGCFeatureLayer>;
|
|
222
|
+
declare function importLayersOpenStreetMapLayer(): Promise<typeof __esri.OpenStreetMapLayer>;
|
|
223
|
+
declare function newLayersOpenStreetMapLayer(properties: __esri.OpenStreetMapLayerProperties): Promise<__esri.OpenStreetMapLayer>;
|
|
224
|
+
declare function importLayersOrientedImageryLayer(): Promise<typeof __esri.OrientedImageryLayer>;
|
|
225
|
+
declare function newLayersOrientedImageryLayer(properties: __esri.OrientedImageryLayerProperties): Promise<__esri.OrientedImageryLayer>;
|
|
226
|
+
declare function importLayersPointCloudFiltersPointCloudFilter(): Promise<typeof __esri.PointCloudFilter>;
|
|
227
|
+
declare function newLayersPointCloudFiltersPointCloudFilter(properties: __esri.PointCloudFilterProperties): Promise<__esri.PointCloudFilter>;
|
|
228
|
+
declare function importLayersPointCloudFiltersPointCloudReturnFilter(): Promise<typeof __esri.PointCloudReturnFilter>;
|
|
229
|
+
declare function newLayersPointCloudFiltersPointCloudReturnFilter(properties: __esri.PointCloudReturnFilterProperties): Promise<__esri.PointCloudReturnFilter>;
|
|
230
|
+
declare function importLayersPointCloudFiltersPointCloudValueFilter(): Promise<typeof __esri.PointCloudValueFilter>;
|
|
231
|
+
declare function newLayersPointCloudFiltersPointCloudValueFilter(properties: __esri.PointCloudValueFilterProperties): Promise<__esri.PointCloudValueFilter>;
|
|
232
|
+
declare function importLayersPointCloudFiltersPointCloudBitfieldFilter(): Promise<typeof __esri.PointCloudBitfieldFilter>;
|
|
233
|
+
declare function newLayersPointCloudFiltersPointCloudBitfieldFilter(properties: __esri.PointCloudBitfieldFilterProperties): Promise<__esri.PointCloudBitfieldFilter>;
|
|
234
|
+
declare function importLayersPointCloudLayer(): Promise<typeof __esri.PointCloudLayer>;
|
|
235
|
+
declare function newLayersPointCloudLayer(properties: __esri.PointCloudLayerProperties): Promise<__esri.PointCloudLayer>;
|
|
236
|
+
declare function importLayersRouteLayer(): Promise<typeof __esri.RouteLayer>;
|
|
237
|
+
declare function newLayersRouteLayer(properties: __esri.RouteLayerProperties): Promise<__esri.RouteLayer>;
|
|
238
|
+
declare function importLayersSceneLayer(): Promise<typeof __esri.SceneLayer>;
|
|
239
|
+
declare function newLayersSceneLayer(properties: __esri.SceneLayerProperties): Promise<__esri.SceneLayer>;
|
|
240
|
+
declare function importLayersStreamLayer(): Promise<typeof __esri.StreamLayer>;
|
|
241
|
+
declare function newLayersStreamLayer(properties: __esri.StreamLayerProperties): Promise<__esri.StreamLayer>;
|
|
242
|
+
declare function importLayersSubtypeGroupLayer(): Promise<typeof __esri.SubtypeGroupLayer>;
|
|
243
|
+
declare function newLayersSubtypeGroupLayer(properties: __esri.SubtypeGroupLayerProperties): Promise<__esri.SubtypeGroupLayer>;
|
|
244
|
+
declare function importLayersSupportAggregateField(): Promise<typeof __esri.AggregateField>;
|
|
245
|
+
declare function newLayersSupportAggregateField(properties: __esri.AggregateFieldProperties): Promise<__esri.AggregateField>;
|
|
246
|
+
declare function importLayersSupportBuildingFilter(): Promise<typeof __esri.BuildingFilter>;
|
|
247
|
+
declare function newLayersSupportBuildingFilter(properties: __esri.BuildingFilterProperties): Promise<__esri.BuildingFilter>;
|
|
248
|
+
declare function importLayersSupportBuildingSummaryStatistics(): Promise<typeof __esri.BuildingSummaryStatistics>;
|
|
249
|
+
declare function newLayersSupportBuildingSummaryStatistics(properties: __esri.BuildingSummaryStatisticsProperties): Promise<__esri.BuildingSummaryStatistics>;
|
|
250
|
+
declare function importLayersSupportCodedValueDomain(): Promise<typeof __esri.CodedValueDomain>;
|
|
251
|
+
declare function newLayersSupportCodedValueDomain(properties: __esri.CodedValueDomainProperties): Promise<__esri.CodedValueDomain>;
|
|
252
|
+
declare function importLayersSupportControlPointsGeoreference(): Promise<typeof __esri.ControlPointsGeoreference>;
|
|
253
|
+
declare function newLayersSupportControlPointsGeoreference(properties: __esri.ControlPointsGeoreferenceProperties): Promise<__esri.ControlPointsGeoreference>;
|
|
254
|
+
declare function importLayersSupportCornersGeoreference(): Promise<typeof __esri.CornersGeoreference>;
|
|
255
|
+
declare function newLayersSupportCornersGeoreference(properties: __esri.CornersGeoreferenceProperties): Promise<__esri.CornersGeoreference>;
|
|
256
|
+
declare function importLayersSupportDimensionalDefinition(): Promise<typeof __esri.DimensionalDefinition>;
|
|
257
|
+
declare function newLayersSupportDimensionalDefinition(properties: __esri.DimensionalDefinitionProperties): Promise<__esri.DimensionalDefinition>;
|
|
258
|
+
declare function importLayersSupportDomain(): Promise<typeof __esri.Domain>;
|
|
259
|
+
declare function newLayersSupportDomain(properties: __esri.DomainProperties): Promise<__esri.Domain>;
|
|
260
|
+
declare function importLayersSupportElevationSampler(): Promise<typeof __esri.ElevationSampler>;
|
|
261
|
+
declare function newLayersSupportElevationSampler(): Promise<__esri.ElevationSampler>;
|
|
262
|
+
declare function importLayersSupportExpressionInfo(): Promise<typeof __esri.supportExpressionInfo>;
|
|
263
|
+
declare function newLayersSupportExpressionInfo(properties: __esri.supportExpressionInfoProperties): Promise<__esri.supportExpressionInfo>;
|
|
264
|
+
declare function importLayersSupportExtentAndRotationGeoreference(): Promise<typeof __esri.ExtentAndRotationGeoreference>;
|
|
265
|
+
declare function newLayersSupportExtentAndRotationGeoreference(properties: __esri.ExtentAndRotationGeoreferenceProperties): Promise<__esri.ExtentAndRotationGeoreference>;
|
|
266
|
+
declare function importLayersSupportFacilityLayerInfo(): Promise<typeof __esri.FacilityLayerInfo>;
|
|
267
|
+
declare function newLayersSupportFacilityLayerInfo(properties: __esri.FacilityLayerInfoProperties): Promise<__esri.FacilityLayerInfo>;
|
|
268
|
+
declare function importLayersSupportFeatureEffect(): Promise<typeof __esri.FeatureEffect>;
|
|
269
|
+
declare function newLayersSupportFeatureEffect(properties: __esri.FeatureEffectProperties): Promise<__esri.FeatureEffect>;
|
|
270
|
+
declare function importLayersSupportFeatureFilter(): Promise<typeof __esri.FeatureFilter>;
|
|
271
|
+
declare function newLayersSupportFeatureFilter(properties: __esri.FeatureFilterProperties): Promise<__esri.FeatureFilter>;
|
|
272
|
+
declare function importLayersSupportFeatureReductionBinning(): Promise<typeof __esri.FeatureReductionBinning>;
|
|
273
|
+
declare function newLayersSupportFeatureReductionBinning(properties: __esri.FeatureReductionBinningProperties): Promise<__esri.FeatureReductionBinning>;
|
|
274
|
+
declare function importLayersSupportFeatureReductionCluster(): Promise<typeof __esri.FeatureReductionCluster>;
|
|
275
|
+
declare function newLayersSupportFeatureReductionCluster(properties: __esri.FeatureReductionClusterProperties): Promise<__esri.FeatureReductionCluster>;
|
|
276
|
+
declare function importLayersSupportFeatureReductionSelection(): Promise<typeof __esri.FeatureReductionSelection>;
|
|
277
|
+
declare function newLayersSupportFeatureReductionSelection(properties: __esri.FeatureReductionSelectionProperties): Promise<__esri.FeatureReductionSelection>;
|
|
278
|
+
declare function importLayersSupportFeatureTemplate(): Promise<typeof __esri.FeatureTemplate>;
|
|
279
|
+
declare function newLayersSupportFeatureTemplate(properties: __esri.FeatureTemplateProperties): Promise<__esri.FeatureTemplate>;
|
|
280
|
+
declare function importLayersSupportFeatureType(): Promise<typeof __esri.FeatureType>;
|
|
281
|
+
declare function newLayersSupportFeatureType(properties: __esri.FeatureTypeProperties): Promise<__esri.FeatureType>;
|
|
282
|
+
declare function importLayersSupportField(): Promise<typeof __esri.Field>;
|
|
283
|
+
declare function newLayersSupportField(properties: __esri.FieldProperties): Promise<__esri.Field>;
|
|
284
|
+
declare function importLayersSupportFieldsIndex(): Promise<typeof __esri.FieldsIndex>;
|
|
285
|
+
declare function newLayersSupportFieldsIndex(properties: any): Promise<__esri.FieldsIndex>;
|
|
286
|
+
declare function importLayersSupportGeometryFieldsInfo(): Promise<typeof __esri.GeometryFieldsInfo>;
|
|
287
|
+
declare function newLayersSupportGeometryFieldsInfo(properties: __esri.GeometryFieldsInfoProperties): Promise<__esri.GeometryFieldsInfo>;
|
|
288
|
+
declare function importLayersSupportImageElement(): Promise<typeof __esri.ImageElement>;
|
|
289
|
+
declare function newLayersSupportImageElement(properties: __esri.ImageElementProperties): Promise<__esri.ImageElement>;
|
|
290
|
+
declare function importLayersSupportInheritedDomain(): Promise<typeof __esri.InheritedDomain>;
|
|
291
|
+
declare function newLayersSupportInheritedDomain(properties: __esri.InheritedDomainProperties): Promise<__esri.InheritedDomain>;
|
|
292
|
+
declare function importLayersSupportKMLSublayer(): Promise<typeof __esri.KMLSublayer>;
|
|
293
|
+
declare function newLayersSupportKMLSublayer(properties: __esri.KMLSublayerProperties): Promise<__esri.KMLSublayer>;
|
|
294
|
+
declare function importLayersSupportLabelClass(): Promise<typeof __esri.LabelClass>;
|
|
295
|
+
declare function newLayersSupportLabelClass(properties: __esri.LabelClassProperties): Promise<__esri.LabelClass>;
|
|
296
|
+
declare function importLayersSupportLayerFloorInfo(): Promise<typeof __esri.LayerFloorInfo>;
|
|
297
|
+
declare function newLayersSupportLayerFloorInfo(properties: __esri.LayerFloorInfoProperties): Promise<__esri.LayerFloorInfo>;
|
|
298
|
+
declare function importLayersSupportLevelLayerInfo(): Promise<typeof __esri.LevelLayerInfo>;
|
|
299
|
+
declare function newLayersSupportLevelLayerInfo(properties: __esri.LevelLayerInfoProperties): Promise<__esri.LevelLayerInfo>;
|
|
300
|
+
declare function importLayersSupportLocalMediaElementSource(): Promise<typeof __esri.LocalMediaElementSource>;
|
|
301
|
+
declare function newLayersSupportLocalMediaElementSource(properties: __esri.LocalMediaElementSourceProperties): Promise<__esri.LocalMediaElementSource>;
|
|
302
|
+
declare function importLayersSupportLOD(): Promise<typeof __esri.LOD>;
|
|
303
|
+
declare function newLayersSupportLOD(properties: __esri.LODProperties): Promise<__esri.LOD>;
|
|
304
|
+
declare function importLayersSupportMapImage(): Promise<typeof __esri.MapImage>;
|
|
305
|
+
declare function newLayersSupportMapImage(properties: __esri.MapImageProperties): Promise<__esri.MapImage>;
|
|
306
|
+
declare function importLayersSupportMosaicRule(): Promise<typeof __esri.MosaicRule>;
|
|
307
|
+
declare function newLayersSupportMosaicRule(properties: __esri.MosaicRuleProperties): Promise<__esri.MosaicRule>;
|
|
308
|
+
declare function importLayersSupportMultidimensionalSubset(): Promise<typeof __esri.MultidimensionalSubset>;
|
|
309
|
+
declare function newLayersSupportMultidimensionalSubset(properties: __esri.MultidimensionalSubsetProperties): Promise<__esri.MultidimensionalSubset>;
|
|
310
|
+
declare function importLayersSupportPixelBlock(): Promise<typeof __esri.PixelBlock>;
|
|
311
|
+
declare function newLayersSupportPixelBlock(properties: __esri.PixelBlockProperties): Promise<__esri.PixelBlock>;
|
|
312
|
+
declare function importLayersSupportPublishingInfo(): Promise<typeof __esri.PublishingInfo>;
|
|
313
|
+
declare function newLayersSupportPublishingInfo(properties: __esri.PublishingInfoProperties): Promise<__esri.PublishingInfo>;
|
|
314
|
+
declare function importLayersSupportSceneFilter(): Promise<typeof __esri.SceneFilter>;
|
|
315
|
+
declare function newLayersSupportSceneFilter(properties: __esri.SceneFilterProperties): Promise<__esri.SceneFilter>;
|
|
316
|
+
declare function importLayersSupportRangeDomain(): Promise<typeof __esri.RangeDomain>;
|
|
317
|
+
declare function newLayersSupportRangeDomain(properties: __esri.RangeDomainProperties): Promise<__esri.RangeDomain>;
|
|
318
|
+
declare function importLayersSupportRasterBandInfo(): Promise<typeof __esri.RasterBandInfo>;
|
|
319
|
+
declare function newLayersSupportRasterBandInfo(properties: __esri.RasterBandInfoProperties): Promise<__esri.RasterBandInfo>;
|
|
320
|
+
declare function importLayersSupportRasterFunction(): Promise<typeof __esri.RasterFunction>;
|
|
321
|
+
declare function newLayersSupportRasterFunction(properties: __esri.RasterFunctionProperties): Promise<__esri.RasterFunction>;
|
|
322
|
+
declare function importLayersSupportRasterInfo(): Promise<typeof __esri.RasterInfo>;
|
|
323
|
+
declare function newLayersSupportRasterInfo(properties: __esri.RasterInfoProperties): Promise<__esri.RasterInfo>;
|
|
324
|
+
declare function importLayersSupportRasterSensorInfo(): Promise<typeof __esri.RasterSensorInfo>;
|
|
325
|
+
declare function newLayersSupportRasterSensorInfo(properties: __esri.RasterSensorInfoProperties): Promise<__esri.RasterSensorInfo>;
|
|
326
|
+
declare function importLayersSupportRelationship(): Promise<typeof __esri.Relationship>;
|
|
327
|
+
declare function newLayersSupportRelationship(properties: __esri.RelationshipProperties): Promise<__esri.Relationship>;
|
|
328
|
+
declare function importLayersSupportRouteStopSymbols(): Promise<typeof __esri.RouteStopSymbols>;
|
|
329
|
+
declare function newLayersSupportRouteStopSymbols(properties: __esri.RouteStopSymbolsProperties): Promise<__esri.RouteStopSymbols>;
|
|
330
|
+
declare function importLayersSupportRouteSymbols(): Promise<typeof __esri.RouteSymbols>;
|
|
331
|
+
declare function newLayersSupportRouteSymbols(properties: __esri.RouteSymbolsProperties): Promise<__esri.RouteSymbols>;
|
|
332
|
+
declare function importLayersSupportSceneModification(): Promise<typeof __esri.SceneModification>;
|
|
333
|
+
declare function newLayersSupportSceneModification(properties: __esri.SceneModificationProperties): Promise<__esri.SceneModification>;
|
|
334
|
+
declare function importLayersSupportSceneModifications(): Promise<typeof __esri.SceneModifications>;
|
|
335
|
+
declare function newLayersSupportSceneModifications(properties: __esri.SceneModificationsProperties | __esri.SceneModificationProperties[] | __esri.Collection<__esri.SceneModificationProperties>): Promise<__esri.SceneModifications>;
|
|
336
|
+
declare function importLayersSupportSiteLayerInfo(): Promise<typeof __esri.SiteLayerInfo>;
|
|
337
|
+
declare function newLayersSupportSiteLayerInfo(properties: __esri.SiteLayerInfoProperties): Promise<__esri.SiteLayerInfo>;
|
|
338
|
+
declare function importLayersSupportSublayer(): Promise<typeof __esri.Sublayer>;
|
|
339
|
+
declare function newLayersSupportSublayer(properties: __esri.SublayerProperties): Promise<__esri.Sublayer>;
|
|
340
|
+
declare function importLayersSupportSubtype(): Promise<typeof __esri.Subtype>;
|
|
341
|
+
declare function newLayersSupportSubtype(properties: __esri.SubtypeProperties): Promise<__esri.Subtype>;
|
|
342
|
+
declare function importLayersSupportSubtypeSublayer(): Promise<typeof __esri.SubtypeSublayer>;
|
|
343
|
+
declare function newLayersSupportSubtypeSublayer(properties: __esri.SubtypeSublayerProperties): Promise<__esri.SubtypeSublayer>;
|
|
344
|
+
declare function importLayersSupportTelemetryData(): Promise<typeof __esri.TelemetryData>;
|
|
345
|
+
declare function newLayersSupportTelemetryData(properties: __esri.TelemetryDataProperties): Promise<__esri.TelemetryData>;
|
|
346
|
+
declare function importLayersSupportTelemetryDisplay(): Promise<typeof __esri.TelemetryDisplay>;
|
|
347
|
+
declare function newLayersSupportTelemetryDisplay(properties: __esri.TelemetryDisplayProperties): Promise<__esri.TelemetryDisplay>;
|
|
348
|
+
declare function importLayersSupportTileInfo(): Promise<typeof __esri.TileInfo>;
|
|
349
|
+
declare function newLayersSupportTileInfo(properties: __esri.TileInfoProperties): Promise<__esri.TileInfo>;
|
|
350
|
+
declare function importLayersSupportTileMatrixSet(): Promise<typeof __esri.TileMatrixSet>;
|
|
351
|
+
declare function newLayersSupportTileMatrixSet(properties: __esri.TileMatrixSetProperties): Promise<__esri.TileMatrixSet>;
|
|
352
|
+
declare function importLayersSupportTimeInfo(): Promise<typeof __esri.TimeInfo>;
|
|
353
|
+
declare function newLayersSupportTimeInfo(properties: __esri.TimeInfoProperties): Promise<__esri.TimeInfo>;
|
|
354
|
+
declare function importLayersSupportVideoElement(): Promise<typeof __esri.VideoElement>;
|
|
355
|
+
declare function newLayersSupportVideoElement(properties: __esri.VideoElementProperties): Promise<__esri.VideoElement>;
|
|
356
|
+
declare function importLayersSupportVideoTimeExtent(): Promise<typeof __esri.VideoTimeExtent>;
|
|
357
|
+
declare function newLayersSupportVideoTimeExtent(properties: __esri.VideoTimeExtentProperties): Promise<__esri.VideoTimeExtent>;
|
|
358
|
+
declare function importLayersViewshedLayer(): Promise<typeof __esri.ViewshedLayer>;
|
|
359
|
+
declare function newLayersViewshedLayer(properties: __esri.ViewshedLayerProperties): Promise<__esri.ViewshedLayer>;
|
|
360
|
+
declare function importLayersVoxelVoxelDynamicSection(): Promise<typeof __esri.VoxelDynamicSection>;
|
|
361
|
+
declare function newLayersVoxelVoxelDynamicSection(properties: __esri.VoxelDynamicSectionProperties): Promise<__esri.VoxelDynamicSection>;
|
|
362
|
+
declare function importLayersVoxelVoxelSlice(): Promise<typeof __esri.VoxelSlice>;
|
|
363
|
+
declare function newLayersVoxelVoxelSlice(properties: __esri.VoxelSliceProperties): Promise<__esri.VoxelSlice>;
|
|
364
|
+
declare function importLayersVoxelVoxelTransferFunctionStyle(): Promise<typeof __esri.VoxelTransferFunctionStyle>;
|
|
365
|
+
declare function newLayersVoxelVoxelTransferFunctionStyle(properties: __esri.VoxelTransferFunctionStyleProperties): Promise<__esri.VoxelTransferFunctionStyle>;
|
|
366
|
+
declare function importLayersVoxelVoxelVariableStyle(): Promise<typeof __esri.VoxelVariableStyle>;
|
|
367
|
+
declare function newLayersVoxelVoxelVariableStyle(properties: __esri.VoxelVariableStyleProperties): Promise<__esri.VoxelVariableStyle>;
|
|
368
|
+
declare function importLayersVoxelVoxelVolumeStyle(): Promise<typeof __esri.VoxelVolumeStyle>;
|
|
369
|
+
declare function newLayersVoxelVoxelVolumeStyle(properties: __esri.VoxelVolumeStyleProperties): Promise<__esri.VoxelVolumeStyle>;
|
|
370
|
+
declare function importLayersSupportWMSSublayer(): Promise<typeof __esri.WMSSublayer>;
|
|
371
|
+
declare function newLayersSupportWMSSublayer(properties: __esri.WMSSublayerProperties): Promise<__esri.WMSSublayer>;
|
|
372
|
+
declare function importLayersSupportWMTSStyle(): Promise<typeof __esri.WMTSStyle>;
|
|
373
|
+
declare function newLayersSupportWMTSStyle(properties: __esri.WMTSStyleProperties): Promise<__esri.WMTSStyle>;
|
|
374
|
+
declare function importLayersSupportWMTSSublayer(): Promise<typeof __esri.WMTSSublayer>;
|
|
375
|
+
declare function newLayersSupportWMTSSublayer(properties: __esri.WMTSSublayerProperties): Promise<__esri.WMTSSublayer>;
|
|
376
|
+
declare function importLayersTileLayer(): Promise<typeof __esri.TileLayer>;
|
|
377
|
+
declare function newLayersTileLayer(properties: __esri.TileLayerProperties): Promise<__esri.TileLayer>;
|
|
378
|
+
declare function importLayersUnknownLayer(): Promise<typeof __esri.UnknownLayer>;
|
|
379
|
+
declare function newLayersUnknownLayer(properties: __esri.UnknownLayerProperties): Promise<__esri.UnknownLayer>;
|
|
380
|
+
declare function importLayersUnsupportedLayer(): Promise<typeof __esri.UnsupportedLayer>;
|
|
381
|
+
declare function newLayersUnsupportedLayer(properties: __esri.UnsupportedLayerProperties): Promise<__esri.UnsupportedLayer>;
|
|
382
|
+
declare function importLayersVideoLayer(): Promise<typeof __esri.VideoLayer>;
|
|
383
|
+
declare function newLayersVideoLayer(properties: __esri.VideoLayerProperties): Promise<__esri.VideoLayer>;
|
|
384
|
+
declare function importLayersVectorTileLayer(): Promise<typeof __esri.VectorTileLayer>;
|
|
385
|
+
declare function newLayersVectorTileLayer(properties: __esri.VectorTileLayerProperties): Promise<__esri.VectorTileLayer>;
|
|
386
|
+
declare function importLayersVoxelLayer(): Promise<typeof __esri.VoxelLayer>;
|
|
387
|
+
declare function newLayersVoxelLayer(properties: __esri.VoxelLayerProperties): Promise<__esri.VoxelLayer>;
|
|
388
|
+
declare function importLayersWCSLayer(): Promise<typeof __esri.WCSLayer>;
|
|
389
|
+
declare function newLayersWCSLayer(properties: __esri.WCSLayerProperties): Promise<__esri.WCSLayer>;
|
|
390
|
+
declare function importLayersWebTileLayer(): Promise<typeof __esri.WebTileLayer>;
|
|
391
|
+
declare function newLayersWebTileLayer(properties: __esri.WebTileLayerProperties): Promise<__esri.WebTileLayer>;
|
|
392
|
+
declare function importLayersWFSLayer(): Promise<typeof __esri.WFSLayer>;
|
|
393
|
+
declare function newLayersWFSLayer(properties: __esri.WFSLayerProperties): Promise<__esri.WFSLayer>;
|
|
394
|
+
declare function importLayersWMSLayer(): Promise<typeof __esri.WMSLayer>;
|
|
395
|
+
declare function newLayersWMSLayer(properties: __esri.WMSLayerProperties): Promise<__esri.WMSLayer>;
|
|
396
|
+
declare function importLayersWMTSLayer(): Promise<typeof __esri.WMTSLayer>;
|
|
397
|
+
declare function newLayersWMTSLayer(properties: __esri.WMTSLayerProperties): Promise<__esri.WMTSLayer>;
|
|
398
|
+
declare function importMap(): Promise<typeof __esri.Map>;
|
|
399
|
+
declare function newMap(properties: __esri.MapProperties): Promise<__esri.Map>;
|
|
400
|
+
declare function importNetworksNetwork(): Promise<typeof __esri.Network>;
|
|
401
|
+
declare function newNetworksNetwork(properties: __esri.NetworkProperties): Promise<__esri.Network>;
|
|
402
|
+
declare function importNetworksUtilityNetwork(): Promise<typeof __esri.UtilityNetwork>;
|
|
403
|
+
declare function newNetworksUtilityNetwork(properties: __esri.UtilityNetworkProperties): Promise<__esri.UtilityNetwork>;
|
|
404
|
+
declare function importNetworksSupportNamedTraceConfiguration(): Promise<typeof __esri.NamedTraceConfiguration>;
|
|
405
|
+
declare function newNetworksSupportNamedTraceConfiguration(properties: any): Promise<__esri.NamedTraceConfiguration>;
|
|
406
|
+
declare function importNetworksSupportNetworkSystemLayers(): Promise<typeof __esri.NetworkSystemLayers>;
|
|
407
|
+
declare function newNetworksSupportNetworkSystemLayers(properties: __esri.NetworkSystemLayersProperties): Promise<__esri.NetworkSystemLayers>;
|
|
408
|
+
declare function importNetworksSupportTerminal(): Promise<typeof __esri.Terminal>;
|
|
409
|
+
declare function newNetworksSupportTerminal(properties: __esri.TerminalProperties): Promise<__esri.Terminal>;
|
|
410
|
+
declare function importNetworksSupportTerminalConfiguration(): Promise<typeof __esri.TerminalConfiguration>;
|
|
411
|
+
declare function newNetworksSupportTerminalConfiguration(properties: __esri.TerminalConfigurationProperties): Promise<__esri.TerminalConfiguration>;
|
|
412
|
+
declare function importNetworksSupportTopologyValidationJobInfo(): Promise<typeof __esri.TopologyValidationJobInfo>;
|
|
413
|
+
declare function newNetworksSupportTopologyValidationJobInfo(properties: __esri.TopologyValidationJobInfoProperties): Promise<__esri.TopologyValidationJobInfo>;
|
|
414
|
+
declare function importNetworksSupportTraceConfiguration(): Promise<typeof __esri.TraceConfiguration>;
|
|
415
|
+
declare function newNetworksSupportTraceConfiguration(properties: any): Promise<__esri.TraceConfiguration>;
|
|
416
|
+
declare function importNetworksSupportTraceJobInfo(): Promise<typeof __esri.TraceJobInfo>;
|
|
417
|
+
declare function newNetworksSupportTraceJobInfo(properties: __esri.TraceJobInfoProperties): Promise<__esri.TraceJobInfo>;
|
|
418
|
+
declare function importNetworksSupportUNTraceConfiguration(): Promise<typeof __esri.UNTraceConfiguration>;
|
|
419
|
+
declare function newNetworksSupportUNTraceConfiguration(properties: any): Promise<__esri.UNTraceConfiguration>;
|
|
420
|
+
declare function importPopupContentAttachmentsContent(): Promise<typeof __esri.AttachmentsContent>;
|
|
421
|
+
declare function newPopupContentAttachmentsContent(properties: __esri.AttachmentsContentProperties): Promise<__esri.AttachmentsContent>;
|
|
422
|
+
declare function importPopupContentBarChartMediaInfo(): Promise<typeof __esri.BarChartMediaInfo>;
|
|
423
|
+
declare function newPopupContentBarChartMediaInfo(properties: __esri.BarChartMediaInfoProperties): Promise<__esri.BarChartMediaInfo>;
|
|
424
|
+
declare function importPopupContentColumnChartMediaInfo(): Promise<typeof __esri.ColumnChartMediaInfo>;
|
|
425
|
+
declare function newPopupContentColumnChartMediaInfo(properties: __esri.ColumnChartMediaInfoProperties): Promise<__esri.ColumnChartMediaInfo>;
|
|
426
|
+
declare function importPopupContentContent(): Promise<typeof __esri.Content>;
|
|
427
|
+
declare function newPopupContentContent(properties: __esri.ContentProperties): Promise<__esri.Content>;
|
|
428
|
+
declare function importPopupContentCustomContent(): Promise<typeof __esri.CustomContent>;
|
|
429
|
+
declare function newPopupContentCustomContent(properties: __esri.CustomContentProperties): Promise<__esri.CustomContent>;
|
|
430
|
+
declare function importPopupContentExpressionContent(): Promise<typeof __esri.ExpressionContent>;
|
|
431
|
+
declare function newPopupContentExpressionContent(properties: __esri.ExpressionContentProperties): Promise<__esri.ExpressionContent>;
|
|
432
|
+
declare function importPopupContentFieldsContent(): Promise<typeof __esri.FieldsContent>;
|
|
433
|
+
declare function newPopupContentFieldsContent(properties: __esri.FieldsContentProperties): Promise<__esri.FieldsContent>;
|
|
434
|
+
declare function importPopupContentImageMediaInfo(): Promise<typeof __esri.ImageMediaInfo>;
|
|
435
|
+
declare function newPopupContentImageMediaInfo(properties: __esri.ImageMediaInfoProperties): Promise<__esri.ImageMediaInfo>;
|
|
436
|
+
declare function importPopupContentLineChartMediaInfo(): Promise<typeof __esri.LineChartMediaInfo>;
|
|
437
|
+
declare function newPopupContentLineChartMediaInfo(properties: __esri.LineChartMediaInfoProperties): Promise<__esri.LineChartMediaInfo>;
|
|
438
|
+
declare function importPopupContentMediaContent(): Promise<typeof __esri.MediaContent>;
|
|
439
|
+
declare function newPopupContentMediaContent(properties: __esri.MediaContentProperties): Promise<__esri.MediaContent>;
|
|
440
|
+
declare function importPopupContentPieChartMediaInfo(): Promise<typeof __esri.PieChartMediaInfo>;
|
|
441
|
+
declare function newPopupContentPieChartMediaInfo(properties: __esri.PieChartMediaInfoProperties): Promise<__esri.PieChartMediaInfo>;
|
|
442
|
+
declare function importPopupContentRelationshipContent(): Promise<typeof __esri.RelationshipContent>;
|
|
443
|
+
declare function newPopupContentRelationshipContent(properties: __esri.RelationshipContentProperties): Promise<__esri.RelationshipContent>;
|
|
444
|
+
declare function importPopupContentSupportChartMediaInfoValue(): Promise<typeof __esri.ChartMediaInfoValue>;
|
|
445
|
+
declare function newPopupContentSupportChartMediaInfoValue(properties: __esri.ChartMediaInfoValueProperties): Promise<__esri.ChartMediaInfoValue>;
|
|
446
|
+
declare function importPopupContentSupportChartMediaInfoValueSeries(): Promise<typeof __esri.ChartMediaInfoValueSeries>;
|
|
447
|
+
declare function newPopupContentSupportChartMediaInfoValueSeries(properties: __esri.ChartMediaInfoValueSeriesProperties): Promise<__esri.ChartMediaInfoValueSeries>;
|
|
448
|
+
declare function importPopupContentSupportImageMediaInfoValue(): Promise<typeof __esri.ImageMediaInfoValue>;
|
|
449
|
+
declare function newPopupContentSupportImageMediaInfoValue(properties: __esri.ImageMediaInfoValueProperties): Promise<__esri.ImageMediaInfoValue>;
|
|
450
|
+
declare function importPopupContentTextContent(): Promise<typeof __esri.TextContent>;
|
|
451
|
+
declare function newPopupContentTextContent(properties: __esri.TextContentProperties): Promise<__esri.TextContent>;
|
|
452
|
+
declare function importPopupContentUtilityNetworkAssociationsContent(): Promise<typeof __esri.UtilityNetworkAssociationsContent>;
|
|
453
|
+
declare function newPopupContentUtilityNetworkAssociationsContent(properties: __esri.UtilityNetworkAssociationsContentProperties): Promise<__esri.UtilityNetworkAssociationsContent>;
|
|
454
|
+
declare function importPopupElementExpressionInfo(): Promise<typeof __esri.ElementExpressionInfo>;
|
|
455
|
+
declare function newPopupElementExpressionInfo(properties: __esri.ElementExpressionInfoProperties): Promise<__esri.ElementExpressionInfo>;
|
|
456
|
+
declare function importPopupExpressionInfo(): Promise<typeof __esri.popupExpressionInfo>;
|
|
457
|
+
declare function newPopupExpressionInfo(properties: __esri.popupExpressionInfoProperties): Promise<__esri.popupExpressionInfo>;
|
|
458
|
+
declare function importPopupFieldInfo(): Promise<typeof __esri.FieldInfo>;
|
|
459
|
+
declare function newPopupFieldInfo(properties: __esri.FieldInfoProperties): Promise<__esri.FieldInfo>;
|
|
460
|
+
declare function importPopupLayerOptions(): Promise<typeof __esri.LayerOptions>;
|
|
461
|
+
declare function newPopupLayerOptions(properties: __esri.LayerOptionsProperties): Promise<__esri.LayerOptions>;
|
|
462
|
+
declare function importPopupRelatedRecordsInfo(): Promise<typeof __esri.RelatedRecordsInfo>;
|
|
463
|
+
declare function newPopupRelatedRecordsInfo(properties: __esri.RelatedRecordsInfoProperties): Promise<__esri.RelatedRecordsInfo>;
|
|
464
|
+
declare function importPopupSupportFieldInfoFormat(): Promise<typeof __esri.FieldInfoFormat>;
|
|
465
|
+
declare function newPopupSupportFieldInfoFormat(properties: __esri.FieldInfoFormatProperties): Promise<__esri.FieldInfoFormat>;
|
|
466
|
+
declare function importPopupSupportRelatedRecordsInfoFieldOrder(): Promise<typeof __esri.RelatedRecordsInfoFieldOrder>;
|
|
467
|
+
declare function newPopupSupportRelatedRecordsInfoFieldOrder(properties: __esri.RelatedRecordsInfoFieldOrderProperties): Promise<__esri.RelatedRecordsInfoFieldOrder>;
|
|
468
|
+
declare function importPopupTemplate(): Promise<typeof __esri.PopupTemplate>;
|
|
469
|
+
declare function newPopupTemplate(properties: __esri.PopupTemplateProperties): Promise<__esri.PopupTemplate>;
|
|
470
|
+
declare function importPortalPortal(): Promise<typeof __esri.Portal>;
|
|
471
|
+
declare function newPortalPortal(properties: __esri.PortalProperties): Promise<__esri.Portal>;
|
|
472
|
+
declare function importPortalPortalFolder(): Promise<typeof __esri.PortalFolder>;
|
|
473
|
+
declare function newPortalPortalFolder(properties: __esri.PortalFolderProperties): Promise<__esri.PortalFolder>;
|
|
474
|
+
declare function importPortalPortalGroup(): Promise<typeof __esri.PortalGroup>;
|
|
475
|
+
declare function newPortalPortalGroup(properties: __esri.PortalGroupProperties): Promise<__esri.PortalGroup>;
|
|
476
|
+
declare function importPortalPortalItem(): Promise<typeof __esri.PortalItem>;
|
|
477
|
+
declare function newPortalPortalItem(properties: __esri.PortalItemProperties): Promise<__esri.PortalItem>;
|
|
478
|
+
declare function importPortalPortalItemResource(): Promise<typeof __esri.PortalItemResource>;
|
|
479
|
+
declare function newPortalPortalItemResource(properties: __esri.PortalItemResourceProperties): Promise<__esri.PortalItemResource>;
|
|
480
|
+
declare function importPortalPortalQueryParams(): Promise<typeof __esri.PortalQueryParams>;
|
|
481
|
+
declare function newPortalPortalQueryParams(properties: __esri.PortalQueryParamsProperties): Promise<__esri.PortalQueryParams>;
|
|
482
|
+
declare function importPortalPortalQueryResult(): Promise<typeof __esri.PortalQueryResult>;
|
|
483
|
+
declare function newPortalPortalQueryResult(properties: __esri.PortalQueryResultProperties): Promise<__esri.PortalQueryResult>;
|
|
484
|
+
declare function importPortalPortalRating(): Promise<typeof __esri.PortalRating>;
|
|
485
|
+
declare function newPortalPortalRating(properties: __esri.PortalRatingProperties): Promise<__esri.PortalRating>;
|
|
486
|
+
declare function importPortalPortalUser(): Promise<typeof __esri.PortalUser>;
|
|
487
|
+
declare function newPortalPortalUser(properties: __esri.PortalUserProperties): Promise<__esri.PortalUser>;
|
|
488
|
+
declare function importRenderersClassBreaksRenderer(): Promise<typeof __esri.ClassBreaksRenderer>;
|
|
489
|
+
declare function newRenderersClassBreaksRenderer(properties: __esri.ClassBreaksRendererProperties): Promise<__esri.ClassBreaksRenderer>;
|
|
490
|
+
declare function importRenderersDictionaryRenderer(): Promise<typeof __esri.DictionaryRenderer>;
|
|
491
|
+
declare function newRenderersDictionaryRenderer(properties: __esri.DictionaryRendererProperties): Promise<__esri.DictionaryRenderer>;
|
|
492
|
+
declare function importRenderersDotDensityRenderer(): Promise<typeof __esri.DotDensityRenderer>;
|
|
493
|
+
declare function newRenderersDotDensityRenderer(properties: __esri.DotDensityRendererProperties): Promise<__esri.DotDensityRenderer>;
|
|
494
|
+
declare function importRenderersFlowRenderer(): Promise<typeof __esri.FlowRenderer>;
|
|
495
|
+
declare function newRenderersFlowRenderer(properties: __esri.FlowRendererProperties): Promise<__esri.FlowRenderer>;
|
|
496
|
+
declare function importRenderersHeatmapRenderer(): Promise<typeof __esri.HeatmapRenderer>;
|
|
497
|
+
declare function newRenderersHeatmapRenderer(properties: __esri.HeatmapRendererProperties): Promise<__esri.HeatmapRenderer>;
|
|
498
|
+
declare function importRenderersPieChartRenderer(): Promise<typeof __esri.PieChartRenderer>;
|
|
499
|
+
declare function newRenderersPieChartRenderer(properties: __esri.PieChartRendererProperties): Promise<__esri.PieChartRenderer>;
|
|
500
|
+
declare function importRenderersPointCloudClassBreaksRenderer(): Promise<typeof __esri.PointCloudClassBreaksRenderer>;
|
|
501
|
+
declare function newRenderersPointCloudClassBreaksRenderer(properties: __esri.PointCloudClassBreaksRendererProperties): Promise<__esri.PointCloudClassBreaksRenderer>;
|
|
502
|
+
declare function importRenderersPointCloudRenderer(): Promise<typeof __esri.PointCloudRenderer>;
|
|
503
|
+
declare function newRenderersPointCloudRenderer(properties: __esri.PointCloudRendererProperties): Promise<__esri.PointCloudRenderer>;
|
|
504
|
+
declare function importRenderersPointCloudRGBRenderer(): Promise<typeof __esri.PointCloudRGBRenderer>;
|
|
505
|
+
declare function newRenderersPointCloudRGBRenderer(properties: __esri.PointCloudRGBRendererProperties): Promise<__esri.PointCloudRGBRenderer>;
|
|
506
|
+
declare function importRenderersPointCloudStretchRenderer(): Promise<typeof __esri.PointCloudStretchRenderer>;
|
|
507
|
+
declare function newRenderersPointCloudStretchRenderer(properties: __esri.PointCloudStretchRendererProperties): Promise<__esri.PointCloudStretchRenderer>;
|
|
508
|
+
declare function importRenderersPointCloudUniqueValueRenderer(): Promise<typeof __esri.PointCloudUniqueValueRenderer>;
|
|
509
|
+
declare function newRenderersPointCloudUniqueValueRenderer(properties: __esri.PointCloudUniqueValueRendererProperties): Promise<__esri.PointCloudUniqueValueRenderer>;
|
|
510
|
+
declare function importRenderersRasterColormapRenderer(): Promise<typeof __esri.RasterColormapRenderer>;
|
|
511
|
+
declare function newRenderersRasterColormapRenderer(properties: __esri.RasterColormapRendererProperties): Promise<__esri.RasterColormapRenderer>;
|
|
512
|
+
declare function importRenderersRasterShadedReliefRenderer(): Promise<typeof __esri.RasterShadedReliefRenderer>;
|
|
513
|
+
declare function newRenderersRasterShadedReliefRenderer(properties: __esri.RasterShadedReliefRendererProperties): Promise<__esri.RasterShadedReliefRenderer>;
|
|
514
|
+
declare function importRenderersRasterStretchRenderer(): Promise<typeof __esri.RasterStretchRenderer>;
|
|
515
|
+
declare function newRenderersRasterStretchRenderer(properties: __esri.RasterStretchRendererProperties): Promise<__esri.RasterStretchRenderer>;
|
|
516
|
+
declare function importRenderersRenderer(): Promise<typeof __esri.Renderer>;
|
|
517
|
+
declare function newRenderersRenderer(properties: __esri.RendererProperties): Promise<__esri.Renderer>;
|
|
518
|
+
declare function importRenderersSimpleRenderer(): Promise<typeof __esri.SimpleRenderer>;
|
|
519
|
+
declare function newRenderersSimpleRenderer(properties: __esri.SimpleRendererProperties): Promise<__esri.SimpleRenderer>;
|
|
520
|
+
declare function importRenderersSupportAttributeColorInfo(): Promise<typeof __esri.AttributeColorInfo>;
|
|
521
|
+
declare function newRenderersSupportAttributeColorInfo(properties: __esri.AttributeColorInfoProperties): Promise<__esri.AttributeColorInfo>;
|
|
522
|
+
declare function importRenderersSupportAuthoringInfo(): Promise<typeof __esri.AuthoringInfo>;
|
|
523
|
+
declare function newRenderersSupportAuthoringInfo(properties: __esri.AuthoringInfoProperties): Promise<__esri.AuthoringInfo>;
|
|
524
|
+
declare function importRenderersSupportAuthoringInfoVisualVariable(): Promise<typeof __esri.AuthoringInfoVisualVariable>;
|
|
525
|
+
declare function newRenderersSupportAuthoringInfoVisualVariable(properties: __esri.AuthoringInfoVisualVariableProperties): Promise<__esri.AuthoringInfoVisualVariable>;
|
|
526
|
+
declare function importRenderersSupportClassBreakInfo(): Promise<typeof __esri.ClassBreakInfo>;
|
|
527
|
+
declare function newRenderersSupportClassBreakInfo(properties: __esri.ClassBreakInfoProperties): Promise<__esri.ClassBreakInfo>;
|
|
528
|
+
declare function importRenderersSupportColormapInfo(): Promise<typeof __esri.ColormapInfo>;
|
|
529
|
+
declare function newRenderersSupportColormapInfo(properties: __esri.ColormapInfoProperties): Promise<__esri.ColormapInfo>;
|
|
530
|
+
declare function importRenderersSupportHeatmapColorStop(): Promise<typeof __esri.HeatmapColorStop>;
|
|
531
|
+
declare function newRenderersSupportHeatmapColorStop(properties: __esri.HeatmapColorStopProperties): Promise<__esri.HeatmapColorStop>;
|
|
532
|
+
declare function importRenderersSupportUniqueValue(): Promise<typeof __esri.UniqueValue>;
|
|
533
|
+
declare function newRenderersSupportUniqueValue(properties: __esri.UniqueValueProperties): Promise<__esri.UniqueValue>;
|
|
534
|
+
declare function importRenderersSupportUniqueValueClass(): Promise<typeof __esri.UniqueValueClass>;
|
|
535
|
+
declare function newRenderersSupportUniqueValueClass(properties: __esri.UniqueValueClassProperties): Promise<__esri.UniqueValueClass>;
|
|
536
|
+
declare function importRenderersSupportUniqueValueGroup(): Promise<typeof __esri.UniqueValueGroup>;
|
|
537
|
+
declare function newRenderersSupportUniqueValueGroup(properties: __esri.UniqueValueGroupProperties): Promise<__esri.UniqueValueGroup>;
|
|
538
|
+
declare function importRenderersSupportUniqueValueInfo(): Promise<typeof __esri.UniqueValueInfo>;
|
|
539
|
+
declare function newRenderersSupportUniqueValueInfo(properties: __esri.UniqueValueInfoProperties): Promise<__esri.UniqueValueInfo>;
|
|
540
|
+
declare function importRenderersUniqueValueRenderer(): Promise<typeof __esri.UniqueValueRenderer>;
|
|
541
|
+
declare function newRenderersUniqueValueRenderer(properties: __esri.UniqueValueRendererProperties): Promise<__esri.UniqueValueRenderer>;
|
|
542
|
+
declare function importRenderersVectorFieldRenderer(): Promise<typeof __esri.VectorFieldRenderer>;
|
|
543
|
+
declare function newRenderersVectorFieldRenderer(properties: __esri.VectorFieldRendererProperties): Promise<__esri.VectorFieldRenderer>;
|
|
544
|
+
declare function importRenderersVisualVariablesColorVariable(): Promise<typeof __esri.ColorVariable>;
|
|
545
|
+
declare function newRenderersVisualVariablesColorVariable(properties: __esri.ColorVariableProperties): Promise<__esri.ColorVariable>;
|
|
546
|
+
declare function importRenderersVisualVariablesOpacityVariable(): Promise<typeof __esri.OpacityVariable>;
|
|
547
|
+
declare function newRenderersVisualVariablesOpacityVariable(properties: __esri.OpacityVariableProperties): Promise<__esri.OpacityVariable>;
|
|
548
|
+
declare function importRenderersVisualVariablesRotationVariable(): Promise<typeof __esri.RotationVariable>;
|
|
549
|
+
declare function newRenderersVisualVariablesRotationVariable(properties: __esri.RotationVariableProperties): Promise<__esri.RotationVariable>;
|
|
550
|
+
declare function importRenderersVisualVariablesSizeVariable(): Promise<typeof __esri.SizeVariable>;
|
|
551
|
+
declare function newRenderersVisualVariablesSizeVariable(properties: __esri.SizeVariableProperties): Promise<__esri.SizeVariable>;
|
|
552
|
+
declare function importRenderersVisualVariablesSupportColorSizeStop(): Promise<typeof __esri.ColorSizeStop>;
|
|
553
|
+
declare function newRenderersVisualVariablesSupportColorSizeStop(properties: __esri.ColorSizeStopProperties): Promise<__esri.ColorSizeStop>;
|
|
554
|
+
declare function importRenderersVisualVariablesSupportColorStop(): Promise<typeof __esri.ColorStop>;
|
|
555
|
+
declare function newRenderersVisualVariablesSupportColorStop(properties: __esri.ColorStopProperties): Promise<__esri.ColorStop>;
|
|
556
|
+
declare function importRenderersVisualVariablesSupportOpacityStop(): Promise<typeof __esri.OpacityStop>;
|
|
557
|
+
declare function newRenderersVisualVariablesSupportOpacityStop(properties: __esri.OpacityStopProperties): Promise<__esri.OpacityStop>;
|
|
558
|
+
declare function importRenderersVisualVariablesSupportSizeStop(): Promise<typeof __esri.SizeStop>;
|
|
559
|
+
declare function newRenderersVisualVariablesSupportSizeStop(properties: __esri.SizeStopProperties): Promise<__esri.SizeStop>;
|
|
560
|
+
declare function importRenderersVisualVariablesVisualVariable(): Promise<typeof __esri.VisualVariable>;
|
|
561
|
+
declare function newRenderersVisualVariablesVisualVariable(properties: __esri.VisualVariableProperties): Promise<__esri.VisualVariable>;
|
|
562
|
+
declare function importRestFeatureServiceFeatureService(): Promise<typeof __esri.FeatureService>;
|
|
563
|
+
declare function newRestFeatureServiceFeatureService(properties: any): Promise<__esri.FeatureService>;
|
|
564
|
+
declare function importRestKnowledgeGraphDataModel(): Promise<typeof __esri.DataModel>;
|
|
565
|
+
declare function newRestKnowledgeGraphDataModel(properties: __esri.DataModelProperties): Promise<__esri.DataModel>;
|
|
566
|
+
declare function importRestKnowledgeGraphEntity(): Promise<typeof __esri.Entity>;
|
|
567
|
+
declare function newRestKnowledgeGraphEntity(properties: __esri.EntityProperties): Promise<__esri.Entity>;
|
|
568
|
+
declare function importRestKnowledgeGraphEntityType(): Promise<typeof __esri.EntityType>;
|
|
569
|
+
declare function newRestKnowledgeGraphEntityType(properties: __esri.EntityTypeProperties): Promise<__esri.EntityType>;
|
|
570
|
+
declare function importRestKnowledgeGraphFieldIndex(): Promise<typeof __esri.FieldIndex>;
|
|
571
|
+
declare function newRestKnowledgeGraphFieldIndex(properties: __esri.FieldIndexProperties): Promise<__esri.FieldIndex>;
|
|
572
|
+
declare function importRestKnowledgeGraphGraphApplyEdits(): Promise<typeof __esri.GraphApplyEdits>;
|
|
573
|
+
declare function newRestKnowledgeGraphGraphApplyEdits(properties: __esri.GraphApplyEditsProperties): Promise<__esri.GraphApplyEdits>;
|
|
574
|
+
declare function importRestKnowledgeGraphGraphApplyEditsResult(): Promise<typeof __esri.GraphApplyEditsResult>;
|
|
575
|
+
declare function newRestKnowledgeGraphGraphApplyEditsResult(properties: __esri.GraphApplyEditsResultProperties): Promise<__esri.GraphApplyEditsResult>;
|
|
576
|
+
declare function importRestKnowledgeGraphGraphNamedObject(): Promise<typeof __esri.GraphNamedObject>;
|
|
577
|
+
declare function newRestKnowledgeGraphGraphNamedObject(properties: __esri.GraphNamedObjectProperties): Promise<__esri.GraphNamedObject>;
|
|
578
|
+
declare function importRestKnowledgeGraphGraphObject(): Promise<typeof __esri.GraphObject>;
|
|
579
|
+
declare function newRestKnowledgeGraphGraphObject(properties: __esri.GraphObjectProperties): Promise<__esri.GraphObject>;
|
|
580
|
+
declare function importRestKnowledgeGraphGraphObjectType(): Promise<typeof __esri.GraphObjectType>;
|
|
581
|
+
declare function newRestKnowledgeGraphGraphObjectType(properties: __esri.GraphObjectTypeProperties): Promise<__esri.GraphObjectType>;
|
|
582
|
+
declare function importRestKnowledgeGraphGraphProperty(): Promise<typeof __esri.GraphProperty>;
|
|
583
|
+
declare function newRestKnowledgeGraphGraphProperty(properties: __esri.GraphPropertyProperties): Promise<__esri.GraphProperty>;
|
|
584
|
+
declare function importRestKnowledgeGraphGraphQuery(): Promise<typeof __esri.GraphQuery>;
|
|
585
|
+
declare function newRestKnowledgeGraphGraphQuery(properties: __esri.GraphQueryProperties): Promise<__esri.GraphQuery>;
|
|
586
|
+
declare function importRestKnowledgeGraphGraphQueryResult(): Promise<typeof __esri.GraphQueryResult>;
|
|
587
|
+
declare function newRestKnowledgeGraphGraphQueryResult(properties: __esri.GraphQueryResultProperties): Promise<__esri.GraphQueryResult>;
|
|
588
|
+
declare function importRestKnowledgeGraphGraphQueryStreaming(): Promise<typeof __esri.GraphQueryStreaming>;
|
|
589
|
+
declare function newRestKnowledgeGraphGraphQueryStreaming(properties: __esri.GraphQueryStreamingProperties): Promise<__esri.GraphQueryStreaming>;
|
|
590
|
+
declare function importRestKnowledgeGraphGraphQueryStreamingResult(): Promise<typeof __esri.GraphQueryStreamingResult>;
|
|
591
|
+
declare function newRestKnowledgeGraphGraphQueryStreamingResult(properties: __esri.GraphQueryStreamingResultProperties): Promise<__esri.GraphQueryStreamingResult>;
|
|
592
|
+
declare function importRestKnowledgeGraphGraphSearch(): Promise<typeof __esri.GraphSearch>;
|
|
593
|
+
declare function newRestKnowledgeGraphGraphSearch(properties: __esri.GraphSearchProperties): Promise<__esri.GraphSearch>;
|
|
594
|
+
declare function importRestKnowledgeGraphGraphSearchStreaming(): Promise<typeof __esri.GraphSearchStreaming>;
|
|
595
|
+
declare function newRestKnowledgeGraphGraphSearchStreaming(properties: __esri.GraphSearchStreamingProperties): Promise<__esri.GraphSearchStreaming>;
|
|
596
|
+
declare function importRestKnowledgeGraphInputQuantizationParameters(): Promise<typeof __esri.InputQuantizationParameters>;
|
|
597
|
+
declare function newRestKnowledgeGraphInputQuantizationParameters(properties: __esri.InputQuantizationParametersProperties): Promise<__esri.InputQuantizationParameters>;
|
|
598
|
+
declare function importRestKnowledgeGraphKnowledgeGraph(): Promise<typeof __esri.KnowledgeGraph>;
|
|
599
|
+
declare function newRestKnowledgeGraphKnowledgeGraph(properties: __esri.KnowledgeGraphProperties): Promise<__esri.KnowledgeGraph>;
|
|
600
|
+
declare function importRestKnowledgeGraphOutputQuantizationParameters(): Promise<typeof __esri.OutputQuantizationParameters>;
|
|
601
|
+
declare function newRestKnowledgeGraphOutputQuantizationParameters(properties: __esri.OutputQuantizationParametersProperties): Promise<__esri.OutputQuantizationParameters>;
|
|
602
|
+
declare function importRestKnowledgeGraphPath(): Promise<typeof __esri.Path>;
|
|
603
|
+
declare function newRestKnowledgeGraphPath(properties: __esri.PathProperties): Promise<__esri.Path>;
|
|
604
|
+
declare function importRestKnowledgeGraphRelationship(): Promise<typeof __esri.knowledgeGraphRelationship>;
|
|
605
|
+
declare function newRestKnowledgeGraphRelationship(properties: __esri.knowledgeGraphRelationshipProperties): Promise<__esri.knowledgeGraphRelationship>;
|
|
606
|
+
declare function importRestKnowledgeGraphRelationshipType(): Promise<typeof __esri.RelationshipType>;
|
|
607
|
+
declare function newRestKnowledgeGraphRelationshipType(properties: __esri.RelationshipTypeProperties): Promise<__esri.RelationshipType>;
|
|
608
|
+
declare function importRestKnowledgeGraphSearchIndex(): Promise<typeof __esri.SearchIndex>;
|
|
609
|
+
declare function newRestKnowledgeGraphSearchIndex(properties: __esri.SearchIndexProperties): Promise<__esri.SearchIndex>;
|
|
610
|
+
declare function importRestKnowledgeGraphServiceDefinition(): Promise<typeof __esri.ServiceDefinition>;
|
|
611
|
+
declare function newRestKnowledgeGraphServiceDefinition(properties: __esri.ServiceDefinitionProperties): Promise<__esri.ServiceDefinition>;
|
|
612
|
+
declare function importRestNetworksSupportAggregatedGeometry(): Promise<typeof __esri.AggregatedGeometry>;
|
|
613
|
+
declare function newRestNetworksSupportAggregatedGeometry(properties: __esri.AggregatedGeometryProperties): Promise<__esri.AggregatedGeometry>;
|
|
614
|
+
declare function importRestNetworksSupportAssociation(): Promise<typeof __esri.Association>;
|
|
615
|
+
declare function newRestNetworksSupportAssociation(properties: __esri.AssociationProperties): Promise<__esri.Association>;
|
|
616
|
+
declare function importRestNetworksSupportAssociationGeometriesResult(): Promise<typeof __esri.AssociationGeometriesResult>;
|
|
617
|
+
declare function newRestNetworksSupportAssociationGeometriesResult(properties: __esri.AssociationGeometriesResultProperties): Promise<__esri.AssociationGeometriesResult>;
|
|
618
|
+
declare function importRestNetworksSupportFunctionResult(): Promise<typeof __esri.FunctionResult>;
|
|
619
|
+
declare function newRestNetworksSupportFunctionResult(properties: __esri.FunctionResultProperties): Promise<__esri.FunctionResult>;
|
|
620
|
+
declare function importRestNetworksSupportNetworkElement(): Promise<typeof __esri.NetworkElement>;
|
|
621
|
+
declare function newRestNetworksSupportNetworkElement(properties: __esri.NetworkElementProperties): Promise<__esri.NetworkElement>;
|
|
622
|
+
declare function importRestNetworksSupportQueryAssociationsParameters(): Promise<typeof __esri.QueryAssociationsParameters>;
|
|
623
|
+
declare function newRestNetworksSupportQueryAssociationsParameters(properties: __esri.QueryAssociationsParametersProperties): Promise<__esri.QueryAssociationsParameters>;
|
|
624
|
+
declare function importRestNetworksSupportQueryAssociationsResult(): Promise<typeof __esri.QueryAssociationsResult>;
|
|
625
|
+
declare function newRestNetworksSupportQueryAssociationsResult(properties: __esri.QueryAssociationsResultProperties): Promise<__esri.QueryAssociationsResult>;
|
|
626
|
+
declare function importRestNetworksSupportSynthesizeAssociationGeometriesParameters(): Promise<typeof __esri.SynthesizeAssociationGeometriesParameters>;
|
|
627
|
+
declare function newRestNetworksSupportSynthesizeAssociationGeometriesParameters(properties: __esri.SynthesizeAssociationGeometriesParametersProperties): Promise<__esri.SynthesizeAssociationGeometriesParameters>;
|
|
628
|
+
declare function importRestNetworksSupportTraceLocation(): Promise<typeof __esri.TraceLocation>;
|
|
629
|
+
declare function newRestNetworksSupportTraceLocation(properties: __esri.TraceLocationProperties): Promise<__esri.TraceLocation>;
|
|
630
|
+
declare function importRestNetworksSupportTraceParameters(): Promise<typeof __esri.TraceParameters>;
|
|
631
|
+
declare function newRestNetworksSupportTraceParameters(properties: __esri.TraceParametersProperties): Promise<__esri.TraceParameters>;
|
|
632
|
+
declare function importRestNetworksSupportTraceResult(): Promise<typeof __esri.TraceResult>;
|
|
633
|
+
declare function newRestNetworksSupportTraceResult(properties: __esri.TraceResultProperties): Promise<__esri.TraceResult>;
|
|
634
|
+
declare function importRestNetworksSupportValidateNetworkTopologyParameters(): Promise<typeof __esri.ValidateNetworkTopologyParameters>;
|
|
635
|
+
declare function newRestNetworksSupportValidateNetworkTopologyParameters(properties: __esri.ValidateNetworkTopologyParametersProperties): Promise<__esri.ValidateNetworkTopologyParameters>;
|
|
636
|
+
declare function importRestQuerySupportAttachmentInfo(): Promise<typeof __esri.AttachmentInfo>;
|
|
637
|
+
declare function newRestQuerySupportAttachmentInfo(properties: __esri.AttachmentInfoProperties): Promise<__esri.AttachmentInfo>;
|
|
638
|
+
declare function importRestSupportAddressCandidate(): Promise<typeof __esri.AddressCandidate>;
|
|
639
|
+
declare function newRestSupportAddressCandidate(properties: __esri.AddressCandidateProperties): Promise<__esri.AddressCandidate>;
|
|
640
|
+
declare function importRestSupportAlgorithmicColorRamp(): Promise<typeof __esri.AlgorithmicColorRamp>;
|
|
641
|
+
declare function newRestSupportAlgorithmicColorRamp(properties: __esri.AlgorithmicColorRampProperties): Promise<__esri.AlgorithmicColorRamp>;
|
|
642
|
+
declare function importRestSupportArealUnit(): Promise<typeof __esri.ArealUnit>;
|
|
643
|
+
declare function newRestSupportArealUnit(properties: __esri.ArealUnitProperties): Promise<__esri.ArealUnit>;
|
|
644
|
+
declare function importRestSupportAreasAndLengthsParameters(): Promise<typeof __esri.AreasAndLengthsParameters>;
|
|
645
|
+
declare function newRestSupportAreasAndLengthsParameters(properties: __esri.AreasAndLengthsParametersProperties): Promise<__esri.AreasAndLengthsParameters>;
|
|
646
|
+
declare function importRestSupportAttachmentQuery(): Promise<typeof __esri.AttachmentQuery>;
|
|
647
|
+
declare function newRestSupportAttachmentQuery(properties: __esri.AttachmentQueryProperties): Promise<__esri.AttachmentQuery>;
|
|
648
|
+
declare function importRestSupportBufferParameters(): Promise<typeof __esri.BufferParameters>;
|
|
649
|
+
declare function newRestSupportBufferParameters(properties: __esri.BufferParametersProperties): Promise<__esri.BufferParameters>;
|
|
650
|
+
declare function importRestSupportCameraInfo(): Promise<typeof __esri.CameraInfo>;
|
|
651
|
+
declare function newRestSupportCameraInfo(properties: __esri.CameraInfoProperties): Promise<__esri.CameraInfo>;
|
|
652
|
+
declare function importRestSupportClosestFacilityParameters(): Promise<typeof __esri.ClosestFacilityParameters>;
|
|
653
|
+
declare function newRestSupportClosestFacilityParameters(properties: __esri.ClosestFacilityParametersProperties): Promise<__esri.ClosestFacilityParameters>;
|
|
654
|
+
declare function importRestSupportClosestFacilitySolveResult(): Promise<typeof __esri.ClosestFacilitySolveResult>;
|
|
655
|
+
declare function newRestSupportClosestFacilitySolveResult(properties: __esri.ClosestFacilitySolveResultProperties): Promise<__esri.ClosestFacilitySolveResult>;
|
|
656
|
+
declare function importRestSupportColorRamp(): Promise<typeof __esri.ColorRamp>;
|
|
657
|
+
declare function newRestSupportColorRamp(properties: __esri.ColorRampProperties): Promise<__esri.ColorRamp>;
|
|
658
|
+
declare function importRestSupportDataFile(): Promise<typeof __esri.DataFile>;
|
|
659
|
+
declare function newRestSupportDataFile(properties: __esri.DataFileProperties): Promise<__esri.DataFile>;
|
|
660
|
+
declare function importRestSupportDataLayer(): Promise<typeof __esri.DataLayer>;
|
|
661
|
+
declare function newRestSupportDataLayer(properties: __esri.DataLayerProperties): Promise<__esri.DataLayer>;
|
|
662
|
+
declare function importRestSupportDensifyParameters(): Promise<typeof __esri.DensifyParameters>;
|
|
663
|
+
declare function newRestSupportDensifyParameters(properties: __esri.DensifyParametersProperties): Promise<__esri.DensifyParameters>;
|
|
664
|
+
declare function importRestSupportDirectionLine(): Promise<typeof __esri.DirectionLine>;
|
|
665
|
+
declare function newRestSupportDirectionLine(properties: __esri.DirectionLineProperties): Promise<__esri.DirectionLine>;
|
|
666
|
+
declare function importRestSupportDirectionPoint(): Promise<typeof __esri.DirectionPoint>;
|
|
667
|
+
declare function newRestSupportDirectionPoint(properties: __esri.DirectionPointProperties): Promise<__esri.DirectionPoint>;
|
|
668
|
+
declare function importRestSupportDirectionsEvent(): Promise<typeof __esri.DirectionsEvent>;
|
|
669
|
+
declare function newRestSupportDirectionsEvent(properties: __esri.DirectionsEventProperties): Promise<__esri.DirectionsEvent>;
|
|
670
|
+
declare function importRestSupportDirectionsFeature(): Promise<typeof __esri.DirectionsFeature>;
|
|
671
|
+
declare function newRestSupportDirectionsFeature(properties: any): Promise<__esri.DirectionsFeature>;
|
|
672
|
+
declare function importRestSupportDirectionsFeatureSet(): Promise<typeof __esri.DirectionsFeatureSet>;
|
|
673
|
+
declare function newRestSupportDirectionsFeatureSet(properties: __esri.DirectionsFeatureSetProperties): Promise<__esri.DirectionsFeatureSet>;
|
|
674
|
+
declare function importRestSupportDistanceParameters(): Promise<typeof __esri.DistanceParameters>;
|
|
675
|
+
declare function newRestSupportDistanceParameters(properties: __esri.DistanceParametersProperties): Promise<__esri.DistanceParameters>;
|
|
676
|
+
declare function importRestSupportFeatureSet(): Promise<typeof __esri.FeatureSet>;
|
|
677
|
+
declare function newRestSupportFeatureSet(properties: __esri.FeatureSetProperties): Promise<__esri.FeatureSet>;
|
|
678
|
+
declare function importRestSupportFetchPlaceParameters(): Promise<typeof __esri.FetchPlaceParameters>;
|
|
679
|
+
declare function newRestSupportFetchPlaceParameters(properties: __esri.FetchPlaceParametersProperties): Promise<__esri.FetchPlaceParameters>;
|
|
680
|
+
declare function importRestSupportFindImagesParameters(): Promise<typeof __esri.FindImagesParameters>;
|
|
681
|
+
declare function newRestSupportFindImagesParameters(properties: __esri.FindImagesParametersProperties): Promise<__esri.FindImagesParameters>;
|
|
682
|
+
declare function importRestSupportFindImagesResult(): Promise<typeof __esri.FindImagesResult>;
|
|
683
|
+
declare function newRestSupportFindImagesResult(properties: __esri.FindImagesResultProperties): Promise<__esri.FindImagesResult>;
|
|
684
|
+
declare function importRestSupportFindParameters(): Promise<typeof __esri.FindParameters>;
|
|
685
|
+
declare function newRestSupportFindParameters(properties: __esri.FindParametersProperties): Promise<__esri.FindParameters>;
|
|
686
|
+
declare function importRestSupportFindResult(): Promise<typeof __esri.FindResult>;
|
|
687
|
+
declare function newRestSupportFindResult(properties: __esri.FindResultProperties): Promise<__esri.FindResult>;
|
|
688
|
+
declare function importRestSupportGeneralizeParameters(): Promise<typeof __esri.GeneralizeParameters>;
|
|
689
|
+
declare function newRestSupportGeneralizeParameters(properties: __esri.GeneralizeParametersProperties): Promise<__esri.GeneralizeParameters>;
|
|
690
|
+
declare function importRestSupportGPMessage(): Promise<typeof __esri.GPMessage>;
|
|
691
|
+
declare function newRestSupportGPMessage(properties: __esri.GPMessageProperties): Promise<__esri.GPMessage>;
|
|
692
|
+
declare function importRestSupportIdentifyParameters(): Promise<typeof __esri.IdentifyParameters>;
|
|
693
|
+
declare function newRestSupportIdentifyParameters(properties: __esri.IdentifyParametersProperties): Promise<__esri.IdentifyParameters>;
|
|
694
|
+
declare function importRestSupportIdentifyResult(): Promise<typeof __esri.IdentifyResult>;
|
|
695
|
+
declare function newRestSupportIdentifyResult(properties: __esri.IdentifyResultProperties): Promise<__esri.IdentifyResult>;
|
|
696
|
+
declare function importRestSupportImageAngleParameters(): Promise<typeof __esri.ImageAngleParameters>;
|
|
697
|
+
declare function newRestSupportImageAngleParameters(properties: __esri.ImageAngleParametersProperties): Promise<__esri.ImageAngleParameters>;
|
|
698
|
+
declare function importRestSupportImageAngleResult(): Promise<typeof __esri.ImageAngleResult>;
|
|
699
|
+
declare function newRestSupportImageAngleResult(properties: __esri.ImageAngleResultProperties): Promise<__esri.ImageAngleResult>;
|
|
700
|
+
declare function importRestSupportImageAreaParameters(): Promise<typeof __esri.ImageAreaParameters>;
|
|
701
|
+
declare function newRestSupportImageAreaParameters(properties: __esri.ImageAreaParametersProperties): Promise<__esri.ImageAreaParameters>;
|
|
702
|
+
declare function importRestSupportImageAreaResult(): Promise<typeof __esri.ImageAreaResult>;
|
|
703
|
+
declare function newRestSupportImageAreaResult(properties: __esri.ImageAreaResultProperties): Promise<__esri.ImageAreaResult>;
|
|
704
|
+
declare function importRestSupportImageBoundaryParameters(): Promise<typeof __esri.ImageBoundaryParameters>;
|
|
705
|
+
declare function newRestSupportImageBoundaryParameters(properties: __esri.ImageBoundaryParametersProperties): Promise<__esri.ImageBoundaryParameters>;
|
|
706
|
+
declare function importRestSupportImageBoundaryResult(): Promise<typeof __esri.ImageBoundaryResult>;
|
|
707
|
+
declare function newRestSupportImageBoundaryResult(properties: __esri.ImageBoundaryResultProperties): Promise<__esri.ImageBoundaryResult>;
|
|
708
|
+
declare function importRestSupportImageHistogramParameters(): Promise<typeof __esri.ImageHistogramParameters>;
|
|
709
|
+
declare function newRestSupportImageHistogramParameters(properties: __esri.ImageHistogramParametersProperties): Promise<__esri.ImageHistogramParameters>;
|
|
710
|
+
declare function importRestSupportImageIdentifyParameters(): Promise<typeof __esri.ImageIdentifyParameters>;
|
|
711
|
+
declare function newRestSupportImageIdentifyParameters(properties: __esri.ImageIdentifyParametersProperties): Promise<__esri.ImageIdentifyParameters>;
|
|
712
|
+
declare function importRestSupportImageIdentifyResult(): Promise<typeof __esri.ImageIdentifyResult>;
|
|
713
|
+
declare function newRestSupportImageIdentifyResult(properties: __esri.ImageIdentifyResultProperties): Promise<__esri.ImageIdentifyResult>;
|
|
714
|
+
declare function importRestSupportImageInspectionInfo(): Promise<typeof __esri.ImageInspectionInfo>;
|
|
715
|
+
declare function newRestSupportImageInspectionInfo(properties: __esri.ImageInspectionInfoProperties): Promise<__esri.ImageInspectionInfo>;
|
|
716
|
+
declare function importRestSupportImageDistanceParameters(): Promise<typeof __esri.ImageDistanceParameters>;
|
|
717
|
+
declare function newRestSupportImageDistanceParameters(properties: __esri.ImageDistanceParametersProperties): Promise<__esri.ImageDistanceParameters>;
|
|
718
|
+
declare function importRestSupportImageDistanceResult(): Promise<typeof __esri.ImageDistanceResult>;
|
|
719
|
+
declare function newRestSupportImageDistanceResult(properties: __esri.ImageDistanceResultProperties): Promise<__esri.ImageDistanceResult>;
|
|
720
|
+
declare function importRestSupportImageGPSInfo(): Promise<typeof __esri.ImageGPSInfo>;
|
|
721
|
+
declare function newRestSupportImageGPSInfo(properties: __esri.ImageGPSInfoProperties): Promise<__esri.ImageGPSInfo>;
|
|
722
|
+
declare function importRestSupportImageGPSInfoParameters(): Promise<typeof __esri.ImageGPSInfoParameters>;
|
|
723
|
+
declare function newRestSupportImageGPSInfoParameters(properties: __esri.ImageGPSInfoParametersProperties): Promise<__esri.ImageGPSInfoParameters>;
|
|
724
|
+
declare function importRestSupportImageGPSInfoResult(): Promise<typeof __esri.ImageGPSInfoResult>;
|
|
725
|
+
declare function newRestSupportImageGPSInfoResult(properties: __esri.ImageGPSInfoResultProperties): Promise<__esri.ImageGPSInfoResult>;
|
|
726
|
+
declare function importRestSupportImageHeightParameters(): Promise<typeof __esri.ImageHeightParameters>;
|
|
727
|
+
declare function newRestSupportImageHeightParameters(properties: __esri.ImageHeightParametersProperties): Promise<__esri.ImageHeightParameters>;
|
|
728
|
+
declare function importRestSupportImageHeightResult(): Promise<typeof __esri.ImageHeightResult>;
|
|
729
|
+
declare function newRestSupportImageHeightResult(properties: __esri.ImageHeightResultProperties): Promise<__esri.ImageHeightResult>;
|
|
730
|
+
declare function importRestSupportImageParameters(): Promise<typeof __esri.ImageParameters>;
|
|
731
|
+
declare function newRestSupportImageParameters(properties: __esri.ImageParametersProperties): Promise<__esri.ImageParameters>;
|
|
732
|
+
declare function importRestSupportImagePixelLocationParameters(): Promise<typeof __esri.ImagePixelLocationParameters>;
|
|
733
|
+
declare function newRestSupportImagePixelLocationParameters(properties: __esri.ImagePixelLocationParametersProperties): Promise<__esri.ImagePixelLocationParameters>;
|
|
734
|
+
declare function importRestSupportImagePixelLocationResult(): Promise<typeof __esri.ImagePixelLocationResult>;
|
|
735
|
+
declare function newRestSupportImagePixelLocationResult(properties: __esri.ImagePixelLocationResultProperties): Promise<__esri.ImagePixelLocationResult>;
|
|
736
|
+
declare function importRestSupportImagePointParameters(): Promise<typeof __esri.ImagePointParameters>;
|
|
737
|
+
declare function newRestSupportImagePointParameters(properties: __esri.ImagePointParametersProperties): Promise<__esri.ImagePointParameters>;
|
|
738
|
+
declare function importRestSupportImagePointResult(): Promise<typeof __esri.ImagePointResult>;
|
|
739
|
+
declare function newRestSupportImagePointResult(properties: __esri.ImagePointResultProperties): Promise<__esri.ImagePointResult>;
|
|
740
|
+
declare function importRestSupportImageSample(): Promise<typeof __esri.ImageSample>;
|
|
741
|
+
declare function newRestSupportImageSample(properties: __esri.ImageSampleProperties): Promise<__esri.ImageSample>;
|
|
742
|
+
declare function importRestSupportImageSampleParameters(): Promise<typeof __esri.ImageSampleParameters>;
|
|
743
|
+
declare function newRestSupportImageSampleParameters(properties: __esri.ImageSampleParametersProperties): Promise<__esri.ImageSampleParameters>;
|
|
744
|
+
declare function importRestSupportImageSampleResult(): Promise<typeof __esri.ImageSampleResult>;
|
|
745
|
+
declare function newRestSupportImageSampleResult(properties: __esri.ImageSampleResultProperties): Promise<__esri.ImageSampleResult>;
|
|
746
|
+
declare function importRestSupportImageToMapParameters(): Promise<typeof __esri.ImageToMapParameters>;
|
|
747
|
+
declare function newRestSupportImageToMapParameters(properties: __esri.ImageToMapParametersProperties): Promise<__esri.ImageToMapParameters>;
|
|
748
|
+
declare function importRestSupportImageToMapMultirayParameters(): Promise<typeof __esri.ImageToMapMultirayParameters>;
|
|
749
|
+
declare function newRestSupportImageToMapMultirayParameters(properties: __esri.ImageToMapMultirayParametersProperties): Promise<__esri.ImageToMapMultirayParameters>;
|
|
750
|
+
declare function importRestSupportImageUrlParameters(): Promise<typeof __esri.ImageUrlParameters>;
|
|
751
|
+
declare function newRestSupportImageUrlParameters(properties: __esri.ImageUrlParametersProperties): Promise<__esri.ImageUrlParameters>;
|
|
752
|
+
declare function importRestSupportImageUrlResult(): Promise<typeof __esri.ImageUrlResult>;
|
|
753
|
+
declare function newRestSupportImageUrlResult(properties: __esri.ImageUrlResultProperties): Promise<__esri.ImageUrlResult>;
|
|
754
|
+
declare function importRestSupportJobInfo(): Promise<typeof __esri.JobInfo>;
|
|
755
|
+
declare function newRestSupportJobInfo(properties: __esri.JobInfoProperties): Promise<__esri.JobInfo>;
|
|
756
|
+
declare function importRestSupportLegendLayer(): Promise<typeof __esri.LegendLayer>;
|
|
757
|
+
declare function newRestSupportLegendLayer(properties: __esri.LegendLayerProperties): Promise<__esri.LegendLayer>;
|
|
758
|
+
declare function importRestSupportLengthsParameters(): Promise<typeof __esri.LengthsParameters>;
|
|
759
|
+
declare function newRestSupportLengthsParameters(properties: __esri.LengthsParametersProperties): Promise<__esri.LengthsParameters>;
|
|
760
|
+
declare function importRestSupportLinearUnit(): Promise<typeof __esri.LinearUnit>;
|
|
761
|
+
declare function newRestSupportLinearUnit(properties: __esri.LinearUnitProperties): Promise<__esri.LinearUnit>;
|
|
762
|
+
declare function importRestSupportMapToImageParameters(): Promise<typeof __esri.MapToImageParameters>;
|
|
763
|
+
declare function newRestSupportMapToImageParameters(properties: __esri.MapToImageParametersProperties): Promise<__esri.MapToImageParameters>;
|
|
764
|
+
declare function importRestSupportMeasureAreaFromImageResult(): Promise<typeof __esri.MeasureAreaFromImageResult>;
|
|
765
|
+
declare function newRestSupportMeasureAreaFromImageResult(properties: __esri.MeasureAreaFromImageResultProperties): Promise<__esri.MeasureAreaFromImageResult>;
|
|
766
|
+
declare function importRestSupportMeasureLengthFromImageResult(): Promise<typeof __esri.MeasureLengthFromImageResult>;
|
|
767
|
+
declare function newRestSupportMeasureLengthFromImageResult(properties: __esri.MeasureLengthFromImageResultProperties): Promise<__esri.MeasureLengthFromImageResult>;
|
|
768
|
+
declare function importRestSupportMeasureFromImageParameters(): Promise<typeof __esri.MeasureFromImageParameters>;
|
|
769
|
+
declare function newRestSupportMeasureFromImageParameters(properties: __esri.MeasureFromImageParametersProperties): Promise<__esri.MeasureFromImageParameters>;
|
|
770
|
+
declare function importRestSupportMultipartColorRamp(): Promise<typeof __esri.MultipartColorRamp>;
|
|
771
|
+
declare function newRestSupportMultipartColorRamp(properties: __esri.MultipartColorRampProperties): Promise<__esri.MultipartColorRamp>;
|
|
772
|
+
declare function importRestSupportNAMessage(): Promise<typeof __esri.NAMessage>;
|
|
773
|
+
declare function newRestSupportNAMessage(properties: __esri.NAMessageProperties): Promise<__esri.NAMessage>;
|
|
774
|
+
declare function importRestSupportNetworkFeatureSet(): Promise<typeof __esri.NetworkFeatureSet>;
|
|
775
|
+
declare function newRestSupportNetworkFeatureSet(properties: __esri.NetworkFeatureSetProperties): Promise<__esri.NetworkFeatureSet>;
|
|
776
|
+
declare function importRestSupportNetworkUrl(): Promise<typeof __esri.NetworkUrl>;
|
|
777
|
+
declare function newRestSupportNetworkUrl(properties: __esri.NetworkUrlProperties): Promise<__esri.NetworkUrl>;
|
|
778
|
+
declare function importRestSupportOffsetParameters(): Promise<typeof __esri.OffsetParameters>;
|
|
779
|
+
declare function newRestSupportOffsetParameters(properties: __esri.OffsetParametersProperties): Promise<__esri.OffsetParameters>;
|
|
780
|
+
declare function importRestSupportParameterValue(): Promise<typeof __esri.ParameterValue>;
|
|
781
|
+
declare function newRestSupportParameterValue(properties: __esri.ParameterValueProperties): Promise<__esri.ParameterValue>;
|
|
782
|
+
declare function importRestSupportPlaceResult(): Promise<typeof __esri.PlaceResult>;
|
|
783
|
+
declare function newRestSupportPlaceResult(properties: __esri.PlaceResultProperties): Promise<__esri.PlaceResult>;
|
|
784
|
+
declare function importRestSupportPlacesParameters(): Promise<typeof __esri.PlacesParameters>;
|
|
785
|
+
declare function newRestSupportPlacesParameters(properties: __esri.PlacesParametersProperties): Promise<__esri.PlacesParameters>;
|
|
786
|
+
declare function importRestSupportPlacesQueryParameters(): Promise<typeof __esri.PlacesQueryParameters>;
|
|
787
|
+
declare function newRestSupportPlacesQueryParameters(properties: __esri.PlacesQueryParametersProperties): Promise<__esri.PlacesQueryParameters>;
|
|
788
|
+
declare function importRestSupportPlacesQueryResult(): Promise<typeof __esri.PlacesQueryResult>;
|
|
789
|
+
declare function newRestSupportPlacesQueryResult(properties: __esri.PlacesQueryResultProperties): Promise<__esri.PlacesQueryResult>;
|
|
790
|
+
declare function importRestSupportPointBarrier(): Promise<typeof __esri.PointBarrier>;
|
|
791
|
+
declare function newRestSupportPointBarrier(properties: __esri.PointBarrierProperties): Promise<__esri.PointBarrier>;
|
|
792
|
+
declare function importRestSupportPolygonBarrier(): Promise<typeof __esri.PolygonBarrier>;
|
|
793
|
+
declare function newRestSupportPolygonBarrier(properties: __esri.PolygonBarrierProperties): Promise<__esri.PolygonBarrier>;
|
|
794
|
+
declare function importRestSupportPolylineBarrier(): Promise<typeof __esri.PolylineBarrier>;
|
|
795
|
+
declare function newRestSupportPolylineBarrier(properties: __esri.PolylineBarrierProperties): Promise<__esri.PolylineBarrier>;
|
|
796
|
+
declare function importRestSupportPrintParameters(): Promise<typeof __esri.PrintParameters>;
|
|
797
|
+
declare function newRestSupportPrintParameters(properties: __esri.PrintParametersProperties): Promise<__esri.PrintParameters>;
|
|
798
|
+
declare function importRestSupportPrintTemplate(): Promise<typeof __esri.PrintTemplate>;
|
|
799
|
+
declare function newRestSupportPrintTemplate(properties: __esri.PrintTemplateProperties): Promise<__esri.PrintTemplate>;
|
|
800
|
+
declare function importRestSupportProjectParameters(): Promise<typeof __esri.ProjectParameters>;
|
|
801
|
+
declare function newRestSupportProjectParameters(properties: __esri.ProjectParametersProperties): Promise<__esri.ProjectParameters>;
|
|
802
|
+
declare function importRestSupportQuery(): Promise<typeof __esri.Query>;
|
|
803
|
+
declare function newRestSupportQuery(properties: __esri.QueryProperties): Promise<__esri.Query>;
|
|
804
|
+
declare function importRestSupportRasterData(): Promise<typeof __esri.RasterData>;
|
|
805
|
+
declare function newRestSupportRasterData(properties: __esri.RasterDataProperties): Promise<__esri.RasterData>;
|
|
806
|
+
declare function importRestSupportRelationParameters(): Promise<typeof __esri.RelationParameters>;
|
|
807
|
+
declare function newRestSupportRelationParameters(properties: __esri.RelationParametersProperties): Promise<__esri.RelationParameters>;
|
|
808
|
+
declare function importRestSupportRelationshipQuery(): Promise<typeof __esri.RelationshipQuery>;
|
|
809
|
+
declare function newRestSupportRelationshipQuery(properties: __esri.RelationshipQueryProperties): Promise<__esri.RelationshipQuery>;
|
|
810
|
+
declare function importRestSupportRouteInfo(): Promise<typeof __esri.RouteInfo>;
|
|
811
|
+
declare function newRestSupportRouteInfo(properties: __esri.RouteInfoProperties): Promise<__esri.RouteInfo>;
|
|
812
|
+
declare function importRestSupportRouteParameters(): Promise<typeof __esri.RouteParameters>;
|
|
813
|
+
declare function newRestSupportRouteParameters(properties: __esri.RouteParametersProperties): Promise<__esri.RouteParameters>;
|
|
814
|
+
declare function importRestSupportRouteResult(): Promise<typeof __esri.RouteResult>;
|
|
815
|
+
declare function newRestSupportRouteResult(properties: __esri.RouteResultProperties): Promise<__esri.RouteResult>;
|
|
816
|
+
declare function importRestSupportRouteSolveResult(): Promise<typeof __esri.RouteSolveResult>;
|
|
817
|
+
declare function newRestSupportRouteSolveResult(properties: __esri.RouteSolveResultProperties): Promise<__esri.RouteSolveResult>;
|
|
818
|
+
declare function importRestSupportServiceAreaParameters(): Promise<typeof __esri.ServiceAreaParameters>;
|
|
819
|
+
declare function newRestSupportServiceAreaParameters(properties: __esri.ServiceAreaParametersProperties): Promise<__esri.ServiceAreaParameters>;
|
|
820
|
+
declare function importRestSupportServiceAreaSolveResult(): Promise<typeof __esri.ServiceAreaSolveResult>;
|
|
821
|
+
declare function newRestSupportServiceAreaSolveResult(properties: __esri.ServiceAreaSolveResultProperties): Promise<__esri.ServiceAreaSolveResult>;
|
|
822
|
+
declare function importRestSupportStatisticDefinition(): Promise<typeof __esri.StatisticDefinition>;
|
|
823
|
+
declare function newRestSupportStatisticDefinition(properties: __esri.StatisticDefinitionProperties): Promise<__esri.StatisticDefinition>;
|
|
824
|
+
declare function importRestSupportStop(): Promise<typeof __esri.Stop>;
|
|
825
|
+
declare function newRestSupportStop(properties: __esri.StopProperties): Promise<__esri.Stop>;
|
|
826
|
+
declare function importRestSupportTopFeaturesQuery(): Promise<typeof __esri.TopFeaturesQuery>;
|
|
827
|
+
declare function newRestSupportTopFeaturesQuery(properties: __esri.TopFeaturesQueryProperties): Promise<__esri.TopFeaturesQuery>;
|
|
828
|
+
declare function importRestSupportTopFilter(): Promise<typeof __esri.TopFilter>;
|
|
829
|
+
declare function newRestSupportTopFilter(properties: __esri.TopFilterProperties): Promise<__esri.TopFilter>;
|
|
830
|
+
declare function importRestSupportTravelMode(): Promise<typeof __esri.TravelMode>;
|
|
831
|
+
declare function newRestSupportTravelMode(properties: __esri.TravelModeProperties): Promise<__esri.TravelMode>;
|
|
832
|
+
declare function importRestSupportTrimExtendParameters(): Promise<typeof __esri.TrimExtendParameters>;
|
|
833
|
+
declare function newRestSupportTrimExtendParameters(properties: __esri.TrimExtendParametersProperties): Promise<__esri.TrimExtendParameters>;
|
|
834
|
+
declare function importSupportActionsActionBase(): Promise<typeof __esri.ActionBase>;
|
|
835
|
+
declare function newSupportActionsActionBase(properties: __esri.ActionBaseProperties): Promise<__esri.ActionBase>;
|
|
836
|
+
declare function importSupportActionsActionButton(): Promise<typeof __esri.ActionButton>;
|
|
837
|
+
declare function newSupportActionsActionButton(properties: __esri.ActionButtonProperties): Promise<__esri.ActionButton>;
|
|
838
|
+
declare function importSupportActionsActionToggle(): Promise<typeof __esri.ActionToggle>;
|
|
839
|
+
declare function newSupportActionsActionToggle(properties: __esri.ActionToggleProperties): Promise<__esri.ActionToggle>;
|
|
840
|
+
declare function importSupportBasemapStyle(): Promise<typeof __esri.BasemapStyle>;
|
|
841
|
+
declare function newSupportBasemapStyle(properties: __esri.BasemapStyleProperties): Promise<__esri.BasemapStyle>;
|
|
842
|
+
declare function importSupportMapFloorInfo(): Promise<typeof __esri.MapFloorInfo>;
|
|
843
|
+
declare function newSupportMapFloorInfo(properties: __esri.MapFloorInfoProperties): Promise<__esri.MapFloorInfo>;
|
|
844
|
+
declare function importSymbolsCalloutsCallout3D(): Promise<typeof __esri.Callout3D>;
|
|
845
|
+
declare function newSymbolsCalloutsCallout3D(properties: __esri.Callout3DProperties): Promise<__esri.Callout3D>;
|
|
846
|
+
declare function importSymbolsCalloutsLineCallout3D(): Promise<typeof __esri.LineCallout3D>;
|
|
847
|
+
declare function newSymbolsCalloutsLineCallout3D(properties: __esri.LineCallout3DProperties): Promise<__esri.LineCallout3D>;
|
|
848
|
+
declare function importSymbolsCIMSymbol(): Promise<typeof __esri.CIMSymbol>;
|
|
849
|
+
declare function newSymbolsCIMSymbol(properties: __esri.CIMSymbolProperties): Promise<__esri.CIMSymbol>;
|
|
850
|
+
declare function importSymbolsEdgesEdges3D(): Promise<typeof __esri.Edges3D>;
|
|
851
|
+
declare function newSymbolsEdgesEdges3D(properties: __esri.Edges3DProperties): Promise<__esri.Edges3D>;
|
|
852
|
+
declare function importSymbolsEdgesSketchEdges3D(): Promise<typeof __esri.SketchEdges3D>;
|
|
853
|
+
declare function newSymbolsEdgesSketchEdges3D(properties: __esri.SketchEdges3DProperties): Promise<__esri.SketchEdges3D>;
|
|
854
|
+
declare function importSymbolsEdgesSolidEdges3D(): Promise<typeof __esri.SolidEdges3D>;
|
|
855
|
+
declare function newSymbolsEdgesSolidEdges3D(properties: __esri.SolidEdges3DProperties): Promise<__esri.SolidEdges3D>;
|
|
856
|
+
declare function importSymbolsExtrudeSymbol3DLayer(): Promise<typeof __esri.ExtrudeSymbol3DLayer>;
|
|
857
|
+
declare function newSymbolsExtrudeSymbol3DLayer(properties: __esri.ExtrudeSymbol3DLayerProperties): Promise<__esri.ExtrudeSymbol3DLayer>;
|
|
858
|
+
declare function importSymbolsFillSymbol(): Promise<typeof __esri.FillSymbol>;
|
|
859
|
+
declare function newSymbolsFillSymbol(properties: __esri.FillSymbolProperties): Promise<__esri.FillSymbol>;
|
|
860
|
+
declare function importSymbolsFillSymbol3DLayer(): Promise<typeof __esri.FillSymbol3DLayer>;
|
|
861
|
+
declare function newSymbolsFillSymbol3DLayer(properties: __esri.FillSymbol3DLayerProperties): Promise<__esri.FillSymbol3DLayer>;
|
|
862
|
+
declare function importSymbolsFont(): Promise<typeof __esri.Font>;
|
|
863
|
+
declare function newSymbolsFont(properties: __esri.FontProperties): Promise<__esri.Font>;
|
|
864
|
+
declare function importSymbolsIconSymbol3DLayer(): Promise<typeof __esri.IconSymbol3DLayer>;
|
|
865
|
+
declare function newSymbolsIconSymbol3DLayer(properties: __esri.IconSymbol3DLayerProperties): Promise<__esri.IconSymbol3DLayer>;
|
|
866
|
+
declare function importSymbolsLabelSymbol3D(): Promise<typeof __esri.LabelSymbol3D>;
|
|
867
|
+
declare function newSymbolsLabelSymbol3D(properties: __esri.LabelSymbol3DProperties): Promise<__esri.LabelSymbol3D>;
|
|
868
|
+
declare function importSymbolsLineStyleMarker3D(): Promise<typeof __esri.LineStyleMarker3D>;
|
|
869
|
+
declare function newSymbolsLineStyleMarker3D(properties: __esri.LineStyleMarker3DProperties): Promise<__esri.LineStyleMarker3D>;
|
|
870
|
+
declare function importSymbolsLineSymbol(): Promise<typeof __esri.LineSymbol>;
|
|
871
|
+
declare function newSymbolsLineSymbol(properties: __esri.LineSymbolProperties): Promise<__esri.LineSymbol>;
|
|
872
|
+
declare function importSymbolsLineSymbol3D(): Promise<typeof __esri.LineSymbol3D>;
|
|
873
|
+
declare function newSymbolsLineSymbol3D(properties: __esri.LineSymbol3DProperties): Promise<__esri.LineSymbol3D>;
|
|
874
|
+
declare function importSymbolsLineSymbol3DLayer(): Promise<typeof __esri.LineSymbol3DLayer>;
|
|
875
|
+
declare function newSymbolsLineSymbol3DLayer(properties: __esri.LineSymbol3DLayerProperties): Promise<__esri.LineSymbol3DLayer>;
|
|
876
|
+
declare function importSymbolsLineSymbolMarker(): Promise<typeof __esri.LineSymbolMarker>;
|
|
877
|
+
declare function newSymbolsLineSymbolMarker(properties: __esri.LineSymbolMarkerProperties): Promise<__esri.LineSymbolMarker>;
|
|
878
|
+
declare function importSymbolsMarkerSymbol(): Promise<typeof __esri.MarkerSymbol>;
|
|
879
|
+
declare function newSymbolsMarkerSymbol(properties: __esri.MarkerSymbolProperties): Promise<__esri.MarkerSymbol>;
|
|
880
|
+
declare function importSymbolsMeshSymbol3D(): Promise<typeof __esri.MeshSymbol3D>;
|
|
881
|
+
declare function newSymbolsMeshSymbol3D(properties: __esri.MeshSymbol3DProperties): Promise<__esri.MeshSymbol3D>;
|
|
882
|
+
declare function importSymbolsObjectSymbol3DLayer(): Promise<typeof __esri.ObjectSymbol3DLayer>;
|
|
883
|
+
declare function newSymbolsObjectSymbol3DLayer(properties: __esri.ObjectSymbol3DLayerProperties): Promise<__esri.ObjectSymbol3DLayer>;
|
|
884
|
+
declare function importSymbolsPathSymbol3DLayer(): Promise<typeof __esri.PathSymbol3DLayer>;
|
|
885
|
+
declare function newSymbolsPathSymbol3DLayer(properties: __esri.PathSymbol3DLayerProperties): Promise<__esri.PathSymbol3DLayer>;
|
|
886
|
+
declare function importSymbolsPatternsLineStylePattern3D(): Promise<typeof __esri.LineStylePattern3D>;
|
|
887
|
+
declare function newSymbolsPatternsLineStylePattern3D(properties: __esri.LineStylePattern3DProperties): Promise<__esri.LineStylePattern3D>;
|
|
888
|
+
declare function importSymbolsPatternsStylePattern3D(): Promise<typeof __esri.StylePattern3D>;
|
|
889
|
+
declare function newSymbolsPatternsStylePattern3D(properties: __esri.StylePattern3DProperties): Promise<__esri.StylePattern3D>;
|
|
890
|
+
declare function importSymbolsPictureFillSymbol(): Promise<typeof __esri.PictureFillSymbol>;
|
|
891
|
+
declare function newSymbolsPictureFillSymbol(properties: __esri.PictureFillSymbolProperties): Promise<__esri.PictureFillSymbol>;
|
|
892
|
+
declare function importSymbolsPictureMarkerSymbol(): Promise<typeof __esri.PictureMarkerSymbol>;
|
|
893
|
+
declare function newSymbolsPictureMarkerSymbol(properties: __esri.PictureMarkerSymbolProperties): Promise<__esri.PictureMarkerSymbol>;
|
|
894
|
+
declare function importSymbolsPointSymbol3D(): Promise<typeof __esri.PointSymbol3D>;
|
|
895
|
+
declare function newSymbolsPointSymbol3D(properties: __esri.PointSymbol3DProperties): Promise<__esri.PointSymbol3D>;
|
|
896
|
+
declare function importSymbolsPolygonSymbol3D(): Promise<typeof __esri.PolygonSymbol3D>;
|
|
897
|
+
declare function newSymbolsPolygonSymbol3D(properties: __esri.PolygonSymbol3DProperties): Promise<__esri.PolygonSymbol3D>;
|
|
898
|
+
declare function importSymbolsSimpleFillSymbol(): Promise<typeof __esri.SimpleFillSymbol>;
|
|
899
|
+
declare function newSymbolsSimpleFillSymbol(properties: __esri.SimpleFillSymbolProperties): Promise<__esri.SimpleFillSymbol>;
|
|
900
|
+
declare function importSymbolsSimpleLineSymbol(): Promise<typeof __esri.SimpleLineSymbol>;
|
|
901
|
+
declare function newSymbolsSimpleLineSymbol(properties: __esri.SimpleLineSymbolProperties): Promise<__esri.SimpleLineSymbol>;
|
|
902
|
+
declare function importSymbolsSimpleMarkerSymbol(): Promise<typeof __esri.SimpleMarkerSymbol>;
|
|
903
|
+
declare function newSymbolsSimpleMarkerSymbol(properties: __esri.SimpleMarkerSymbolProperties): Promise<__esri.SimpleMarkerSymbol>;
|
|
904
|
+
declare function importSymbolsSupportStyleOrigin(): Promise<typeof __esri.StyleOrigin>;
|
|
905
|
+
declare function newSymbolsSupportStyleOrigin(properties: __esri.StyleOriginProperties): Promise<__esri.StyleOrigin>;
|
|
906
|
+
declare function importSymbolsSupportSymbol3DVerticalOffset(): Promise<typeof __esri.Symbol3DVerticalOffset>;
|
|
907
|
+
declare function newSymbolsSupportSymbol3DVerticalOffset(properties: __esri.Symbol3DVerticalOffsetProperties): Promise<__esri.Symbol3DVerticalOffset>;
|
|
908
|
+
declare function importSymbolsSymbol(): Promise<typeof __esri.Symbol>;
|
|
909
|
+
declare function newSymbolsSymbol(properties: __esri.SymbolProperties): Promise<__esri.Symbol>;
|
|
910
|
+
declare function importSymbolsSymbol3D(): Promise<typeof __esri.Symbol3D>;
|
|
911
|
+
declare function newSymbolsSymbol3D(properties: __esri.Symbol3DProperties): Promise<__esri.Symbol3D>;
|
|
912
|
+
declare function importSymbolsSymbol3DLayer(): Promise<typeof __esri.Symbol3DLayer>;
|
|
913
|
+
declare function newSymbolsSymbol3DLayer(properties: __esri.Symbol3DLayerProperties): Promise<__esri.Symbol3DLayer>;
|
|
914
|
+
declare function importSymbolsTextSymbol(): Promise<typeof __esri.TextSymbol>;
|
|
915
|
+
declare function newSymbolsTextSymbol(properties: __esri.TextSymbolProperties): Promise<__esri.TextSymbol>;
|
|
916
|
+
declare function importSymbolsTextSymbol3DLayer(): Promise<typeof __esri.TextSymbol3DLayer>;
|
|
917
|
+
declare function newSymbolsTextSymbol3DLayer(properties: __esri.TextSymbol3DLayerProperties): Promise<__esri.TextSymbol3DLayer>;
|
|
918
|
+
declare function importSymbolsWaterSymbol3DLayer(): Promise<typeof __esri.WaterSymbol3DLayer>;
|
|
919
|
+
declare function newSymbolsWaterSymbol3DLayer(properties: __esri.WaterSymbol3DLayerProperties): Promise<__esri.WaterSymbol3DLayer>;
|
|
920
|
+
declare function importSymbolsWebStyleSymbol(): Promise<typeof __esri.WebStyleSymbol>;
|
|
921
|
+
declare function newSymbolsWebStyleSymbol(properties: __esri.WebStyleSymbolProperties): Promise<__esri.WebStyleSymbol>;
|
|
922
|
+
declare function importTablesAttributeTableTemplate(): Promise<typeof __esri.AttributeTableTemplate>;
|
|
923
|
+
declare function newTablesAttributeTableTemplate(properties: __esri.AttributeTableTemplateProperties): Promise<__esri.AttributeTableTemplate>;
|
|
924
|
+
declare function importTablesElementsAttributeTableAttachmentElement(): Promise<typeof __esri.AttributeTableAttachmentElement>;
|
|
925
|
+
declare function newTablesElementsAttributeTableAttachmentElement(properties: __esri.AttributeTableAttachmentElementProperties): Promise<__esri.AttributeTableAttachmentElement>;
|
|
926
|
+
declare function importTablesElementsAttributeTableElement(): Promise<typeof __esri.AttributeTableElement>;
|
|
927
|
+
declare function newTablesElementsAttributeTableElement(properties: __esri.AttributeTableElementProperties): Promise<__esri.AttributeTableElement>;
|
|
928
|
+
declare function importTablesElementsAttributeTableGroupElement(): Promise<typeof __esri.AttributeTableGroupElement>;
|
|
929
|
+
declare function newTablesElementsAttributeTableGroupElement(properties: __esri.AttributeTableGroupElementProperties): Promise<__esri.AttributeTableGroupElement>;
|
|
930
|
+
declare function importTablesElementsAttributeTableFieldElement(): Promise<typeof __esri.AttributeTableFieldElement>;
|
|
931
|
+
declare function newTablesElementsAttributeTableFieldElement(properties: __esri.AttributeTableFieldElementProperties): Promise<__esri.AttributeTableFieldElement>;
|
|
932
|
+
declare function importTablesElementsAttributeTableRelationshipElement(): Promise<typeof __esri.AttributeTableRelationshipElement>;
|
|
933
|
+
declare function newTablesElementsAttributeTableRelationshipElement(properties: __esri.AttributeTableRelationshipElementProperties): Promise<__esri.AttributeTableRelationshipElement>;
|
|
934
|
+
declare function importTimeTimeExtent(): Promise<typeof __esri.TimeExtent>;
|
|
935
|
+
declare function newTimeTimeExtent(properties: __esri.TimeExtentProperties): Promise<__esri.TimeExtent>;
|
|
936
|
+
declare function importTimeTimeInterval(): Promise<typeof __esri.TimeInterval>;
|
|
937
|
+
declare function newTimeTimeInterval(properties: __esri.TimeIntervalProperties): Promise<__esri.TimeInterval>;
|
|
938
|
+
declare function importTimeExtent(): Promise<typeof __esri.esriTimeExtent>;
|
|
939
|
+
declare function newTimeExtent(properties: __esri.esriTimeExtentProperties): Promise<__esri.esriTimeExtent>;
|
|
940
|
+
declare function importTimeInterval(): Promise<typeof __esri.esriTimeInterval>;
|
|
941
|
+
declare function newTimeInterval(properties: __esri.esriTimeIntervalProperties): Promise<__esri.esriTimeInterval>;
|
|
942
|
+
declare function importVersionManagementVersioningState(): Promise<typeof __esri.VersioningState>;
|
|
943
|
+
declare function newVersionManagementVersioningState(properties: any): Promise<__esri.VersioningState>;
|
|
944
|
+
declare function importVersionManagementVersionManagementService(): Promise<typeof __esri.VersionManagementService>;
|
|
945
|
+
declare function newVersionManagementVersionManagementService(properties: any): Promise<__esri.VersionManagementService>;
|
|
946
|
+
declare function importViewpoint(): Promise<typeof __esri.Viewpoint>;
|
|
947
|
+
declare function newViewpoint(properties: __esri.ViewpointProperties): Promise<__esri.Viewpoint>;
|
|
948
|
+
declare function importViews2dLayersBaseLayerView2D(): Promise<typeof __esri.BaseLayerView2D>;
|
|
949
|
+
declare function newViews2dLayersBaseLayerView2D(properties: __esri.BaseLayerView2DProperties): Promise<__esri.BaseLayerView2D>;
|
|
950
|
+
declare function importViews2dLayersBaseLayerViewGL2D(): Promise<typeof __esri.BaseLayerViewGL2D>;
|
|
951
|
+
declare function newViews2dLayersBaseLayerViewGL2D(properties: __esri.BaseLayerViewGL2DProperties): Promise<__esri.BaseLayerViewGL2D>;
|
|
952
|
+
declare function importViews2dViewState(): Promise<typeof __esri.ViewState>;
|
|
953
|
+
declare function newViews2dViewState(properties: __esri.ViewStateProperties): Promise<__esri.ViewState>;
|
|
954
|
+
declare function importViews3dAnalysisAreaMeasurementAnalysisView3D(): Promise<typeof __esri.AreaMeasurementAnalysisView3D>;
|
|
955
|
+
declare function newViews3dAnalysisAreaMeasurementAnalysisView3D(properties: any): Promise<__esri.AreaMeasurementAnalysisView3D>;
|
|
956
|
+
declare function importViews3dAnalysisDirectLineMeasurementAnalysisView3D(): Promise<typeof __esri.DirectLineMeasurementAnalysisView3D>;
|
|
957
|
+
declare function newViews3dAnalysisDirectLineMeasurementAnalysisView3D(properties: any): Promise<__esri.DirectLineMeasurementAnalysisView3D>;
|
|
958
|
+
declare function importViews3dAnalysisLineOfSightAnalysisResult(): Promise<typeof __esri.LineOfSightAnalysisResult>;
|
|
959
|
+
declare function newViews3dAnalysisLineOfSightAnalysisResult(properties: any): Promise<__esri.LineOfSightAnalysisResult>;
|
|
960
|
+
declare function importViews3dAnalysisLineOfSightAnalysisView3D(): Promise<typeof __esri.LineOfSightAnalysisView3D>;
|
|
961
|
+
declare function newViews3dAnalysisLineOfSightAnalysisView3D(properties: any): Promise<__esri.LineOfSightAnalysisView3D>;
|
|
962
|
+
declare function importViews3dAnalysisSliceAnalysisView3D(): Promise<typeof __esri.SliceAnalysisView3D>;
|
|
963
|
+
declare function newViews3dAnalysisSliceAnalysisView3D(properties: any): Promise<__esri.SliceAnalysisView3D>;
|
|
964
|
+
declare function importViews3dAnalysisViewshedAnalysisView3D(): Promise<typeof __esri.ViewshedAnalysisView3D>;
|
|
965
|
+
declare function newViews3dAnalysisViewshedAnalysisView3D(properties: any): Promise<__esri.ViewshedAnalysisView3D>;
|
|
966
|
+
declare function importViews3dEnvironmentCloudyWeather(): Promise<typeof __esri.CloudyWeather>;
|
|
967
|
+
declare function newViews3dEnvironmentCloudyWeather(properties: __esri.CloudyWeatherProperties): Promise<__esri.CloudyWeather>;
|
|
968
|
+
declare function importViews3dEnvironmentFoggyWeather(): Promise<typeof __esri.FoggyWeather>;
|
|
969
|
+
declare function newViews3dEnvironmentFoggyWeather(properties: __esri.FoggyWeatherProperties): Promise<__esri.FoggyWeather>;
|
|
970
|
+
declare function importViews3dEnvironmentRainyWeather(): Promise<typeof __esri.RainyWeather>;
|
|
971
|
+
declare function newViews3dEnvironmentRainyWeather(properties: __esri.RainyWeatherProperties): Promise<__esri.RainyWeather>;
|
|
972
|
+
declare function importViews3dEnvironmentSnowyWeather(): Promise<typeof __esri.SnowyWeather>;
|
|
973
|
+
declare function newViews3dEnvironmentSnowyWeather(properties: __esri.SnowyWeatherProperties): Promise<__esri.SnowyWeather>;
|
|
974
|
+
declare function importViews3dEnvironmentSunLighting(): Promise<typeof __esri.SunLighting>;
|
|
975
|
+
declare function newViews3dEnvironmentSunLighting(properties: __esri.SunLightingProperties): Promise<__esri.SunLighting>;
|
|
976
|
+
declare function importViews3dEnvironmentSunnyWeather(): Promise<typeof __esri.SunnyWeather>;
|
|
977
|
+
declare function newViews3dEnvironmentSunnyWeather(properties: __esri.SunnyWeatherProperties): Promise<__esri.SunnyWeather>;
|
|
978
|
+
declare function importViews3dEnvironmentVirtualLighting(): Promise<typeof __esri.VirtualLighting>;
|
|
979
|
+
declare function newViews3dEnvironmentVirtualLighting(properties: __esri.VirtualLightingProperties): Promise<__esri.VirtualLighting>;
|
|
980
|
+
declare function importViews3dWebglRenderNode(): Promise<typeof __esri.RenderNode>;
|
|
981
|
+
declare function newViews3dWebglRenderNode(properties: __esri.RenderNodeProperties): Promise<__esri.RenderNode>;
|
|
982
|
+
declare function importViewsAnalysisDimensionAnalysisView(): Promise<typeof __esri.DimensionAnalysisView>;
|
|
983
|
+
declare function newViewsAnalysisDimensionAnalysisView(properties: __esri.DimensionAnalysisViewProperties): Promise<__esri.DimensionAnalysisView>;
|
|
984
|
+
declare function importViewsBasemapView(): Promise<typeof __esri.BasemapView>;
|
|
985
|
+
declare function newViewsBasemapView(properties: __esri.BasemapViewProperties): Promise<__esri.BasemapView>;
|
|
986
|
+
declare function importViewsDrawDraw(): Promise<typeof __esri.Draw>;
|
|
987
|
+
declare function newViewsDrawDraw(properties: __esri.DrawProperties): Promise<__esri.Draw>;
|
|
988
|
+
declare function importViewsDrawDrawAction(): Promise<typeof __esri.DrawAction>;
|
|
989
|
+
declare function newViewsDrawDrawAction(properties: __esri.DrawActionProperties): Promise<__esri.DrawAction>;
|
|
990
|
+
declare function importViewsDrawMultipointDrawAction(): Promise<typeof __esri.MultipointDrawAction>;
|
|
991
|
+
declare function newViewsDrawMultipointDrawAction(properties: __esri.MultipointDrawActionProperties): Promise<__esri.MultipointDrawAction>;
|
|
992
|
+
declare function importViewsDrawPointDrawAction(): Promise<typeof __esri.PointDrawAction>;
|
|
993
|
+
declare function newViewsDrawPointDrawAction(properties: __esri.PointDrawActionProperties): Promise<__esri.PointDrawAction>;
|
|
994
|
+
declare function importViewsDrawPolygonDrawAction(): Promise<typeof __esri.PolygonDrawAction>;
|
|
995
|
+
declare function newViewsDrawPolygonDrawAction(properties: __esri.PolygonDrawActionProperties): Promise<__esri.PolygonDrawAction>;
|
|
996
|
+
declare function importViewsDrawPolylineDrawAction(): Promise<typeof __esri.PolylineDrawAction>;
|
|
997
|
+
declare function newViewsDrawPolylineDrawAction(properties: __esri.PolylineDrawActionProperties): Promise<__esri.PolylineDrawAction>;
|
|
998
|
+
declare function importViewsDrawSegmentDrawAction(): Promise<typeof __esri.SegmentDrawAction>;
|
|
999
|
+
declare function newViewsDrawSegmentDrawAction(properties: __esri.SegmentDrawActionProperties): Promise<__esri.SegmentDrawAction>;
|
|
1000
|
+
declare function importViewsGroundView(): Promise<typeof __esri.GroundView>;
|
|
1001
|
+
declare function newViewsGroundView(properties: __esri.GroundViewProperties): Promise<__esri.GroundView>;
|
|
1002
|
+
declare function importViewsInputGamepadGamepadInputDevice(): Promise<typeof __esri.GamepadInputDevice>;
|
|
1003
|
+
declare function newViewsInputGamepadGamepadInputDevice(properties: __esri.GamepadInputDeviceProperties): Promise<__esri.GamepadInputDevice>;
|
|
1004
|
+
declare function importViewsInputGamepadGamepadSettings(): Promise<typeof __esri.GamepadSettings>;
|
|
1005
|
+
declare function newViewsInputGamepadGamepadSettings(properties: __esri.GamepadSettingsProperties): Promise<__esri.GamepadSettings>;
|
|
1006
|
+
declare function importViewsInputInput(): Promise<typeof __esri.Input>;
|
|
1007
|
+
declare function newViewsInputInput(properties: __esri.InputProperties): Promise<__esri.Input>;
|
|
1008
|
+
declare function importViewsInteractiveSketchSketchLabelOptions(): Promise<typeof __esri.SketchLabelOptions>;
|
|
1009
|
+
declare function newViewsInteractiveSketchSketchLabelOptions(properties: __esri.SketchLabelOptionsProperties): Promise<__esri.SketchLabelOptions>;
|
|
1010
|
+
declare function importViewsInteractiveSketchSketchTooltipOptions(): Promise<typeof __esri.SketchTooltipOptions>;
|
|
1011
|
+
declare function newViewsInteractiveSketchSketchTooltipOptions(properties: __esri.SketchTooltipOptionsProperties): Promise<__esri.SketchTooltipOptions>;
|
|
1012
|
+
declare function importViewsInteractiveSketchSketchValueOptions(): Promise<typeof __esri.SketchValueOptions>;
|
|
1013
|
+
declare function newViewsInteractiveSketchSketchValueOptions(properties: __esri.SketchValueOptionsProperties): Promise<__esri.SketchValueOptions>;
|
|
1014
|
+
declare function importViewsInteractiveSnappingFeatureSnappingLayerSource(): Promise<typeof __esri.FeatureSnappingLayerSource>;
|
|
1015
|
+
declare function newViewsInteractiveSnappingFeatureSnappingLayerSource(properties: __esri.FeatureSnappingLayerSourceProperties): Promise<__esri.FeatureSnappingLayerSource>;
|
|
1016
|
+
declare function importViewsInteractiveSnappingSnappingOptions(): Promise<typeof __esri.SnappingOptions>;
|
|
1017
|
+
declare function newViewsInteractiveSnappingSnappingOptions(properties: __esri.SnappingOptionsProperties): Promise<__esri.SnappingOptions>;
|
|
1018
|
+
declare function importViewsInteractiveTooltip(): Promise<typeof __esri.Tooltip>;
|
|
1019
|
+
declare function newViewsInteractiveTooltip(properties: __esri.TooltipProperties): Promise<__esri.Tooltip>;
|
|
1020
|
+
declare function importViewsLayersBuildingComponentSublayerView(): Promise<typeof __esri.BuildingComponentSublayerView>;
|
|
1021
|
+
declare function newViewsLayersBuildingComponentSublayerView(properties: __esri.BuildingComponentSublayerViewProperties): Promise<__esri.BuildingComponentSublayerView>;
|
|
1022
|
+
declare function importViewsLayersBuildingSceneLayerView(): Promise<typeof __esri.BuildingSceneLayerView>;
|
|
1023
|
+
declare function newViewsLayersBuildingSceneLayerView(properties: __esri.BuildingSceneLayerViewProperties): Promise<__esri.BuildingSceneLayerView>;
|
|
1024
|
+
declare function importViewsLayersCatalogLayerView(): Promise<typeof __esri.CatalogLayerView>;
|
|
1025
|
+
declare function newViewsLayersCatalogLayerView(properties: __esri.CatalogLayerViewProperties): Promise<__esri.CatalogLayerView>;
|
|
1026
|
+
declare function importViewsLayersCatalogDynamicGroupLayerView(): Promise<typeof __esri.CatalogDynamicGroupLayerView>;
|
|
1027
|
+
declare function newViewsLayersCatalogDynamicGroupLayerView(properties: __esri.CatalogDynamicGroupLayerViewProperties): Promise<__esri.CatalogDynamicGroupLayerView>;
|
|
1028
|
+
declare function importViewsLayersCatalogFootprintLayerView(): Promise<typeof __esri.CatalogFootprintLayerView>;
|
|
1029
|
+
declare function newViewsLayersCatalogFootprintLayerView(properties: __esri.CatalogFootprintLayerViewProperties): Promise<__esri.CatalogFootprintLayerView>;
|
|
1030
|
+
declare function importViewsLayersDimensionLayerView(): Promise<typeof __esri.DimensionLayerView>;
|
|
1031
|
+
declare function newViewsLayersDimensionLayerView(properties: __esri.DimensionLayerViewProperties): Promise<__esri.DimensionLayerView>;
|
|
1032
|
+
declare function importViewsLayersFeatureLayerView(): Promise<typeof __esri.FeatureLayerView>;
|
|
1033
|
+
declare function newViewsLayersFeatureLayerView(properties: __esri.FeatureLayerViewProperties): Promise<__esri.FeatureLayerView>;
|
|
1034
|
+
declare function importViewsLayersImageryLayerView(): Promise<typeof __esri.ImageryLayerView>;
|
|
1035
|
+
declare function newViewsLayersImageryLayerView(properties: __esri.ImageryLayerViewProperties): Promise<__esri.ImageryLayerView>;
|
|
1036
|
+
declare function importViewsLayersLayerView(): Promise<typeof __esri.LayerView>;
|
|
1037
|
+
declare function newViewsLayersLayerView(properties: __esri.LayerViewProperties): Promise<__esri.LayerView>;
|
|
1038
|
+
declare function importViewsLayersMediaLayerView(): Promise<typeof __esri.MediaLayerView>;
|
|
1039
|
+
declare function newViewsLayersMediaLayerView(properties: __esri.MediaLayerViewProperties): Promise<__esri.MediaLayerView>;
|
|
1040
|
+
declare function importViewsLayersOGCFeatureLayerView(): Promise<typeof __esri.OGCFeatureLayerView>;
|
|
1041
|
+
declare function newViewsLayersOGCFeatureLayerView(properties: __esri.OGCFeatureLayerViewProperties): Promise<__esri.OGCFeatureLayerView>;
|
|
1042
|
+
declare function importViewsLayersSceneLayerView(): Promise<typeof __esri.SceneLayerView>;
|
|
1043
|
+
declare function newViewsLayersSceneLayerView(properties: __esri.SceneLayerViewProperties): Promise<__esri.SceneLayerView>;
|
|
1044
|
+
declare function importViewsLayersStreamLayerView(): Promise<typeof __esri.StreamLayerView>;
|
|
1045
|
+
declare function newViewsLayersStreamLayerView(properties: __esri.StreamLayerViewProperties): Promise<__esri.StreamLayerView>;
|
|
1046
|
+
declare function importViewsLayersViewshedLayerView(): Promise<typeof __esri.ViewshedLayerView>;
|
|
1047
|
+
declare function newViewsLayersViewshedLayerView(properties: __esri.ViewshedLayerViewProperties): Promise<__esri.ViewshedLayerView>;
|
|
1048
|
+
declare function importViewsMagnifier(): Promise<typeof __esri.Magnifier>;
|
|
1049
|
+
declare function newViewsMagnifier(properties: __esri.MagnifierProperties): Promise<__esri.Magnifier>;
|
|
1050
|
+
declare function importViewsMapView(): Promise<typeof __esri.MapView>;
|
|
1051
|
+
declare function newViewsMapView(properties: __esri.MapViewProperties): Promise<__esri.MapView>;
|
|
1052
|
+
declare function importViewsNavigationGamepadGamepadSettings(): Promise<typeof __esri.gamepadGamepadSettings>;
|
|
1053
|
+
declare function newViewsNavigationGamepadGamepadSettings(properties: __esri.gamepadGamepadSettingsProperties): Promise<__esri.gamepadGamepadSettings>;
|
|
1054
|
+
declare function importViewsNavigationNavigation(): Promise<typeof __esri.Navigation>;
|
|
1055
|
+
declare function newViewsNavigationNavigation(properties: __esri.NavigationProperties): Promise<__esri.Navigation>;
|
|
1056
|
+
declare function importViewsSceneView(): Promise<typeof __esri.SceneView>;
|
|
1057
|
+
declare function newViewsSceneView(properties: __esri.SceneViewProperties): Promise<__esri.SceneView>;
|
|
1058
|
+
declare function importViewsUiDefaultUI(): Promise<typeof __esri.DefaultUI>;
|
|
1059
|
+
declare function newViewsUiDefaultUI(properties: __esri.DefaultUIProperties): Promise<__esri.DefaultUI>;
|
|
1060
|
+
declare function importViewsUiUI(): Promise<typeof __esri.UI>;
|
|
1061
|
+
declare function newViewsUiUI(properties: __esri.UIProperties): Promise<__esri.UI>;
|
|
1062
|
+
declare function importViewsTheme(): Promise<typeof __esri.Theme>;
|
|
1063
|
+
declare function newViewsTheme(properties: __esri.ThemeProperties): Promise<__esri.Theme>;
|
|
1064
|
+
declare function importViewsView(): Promise<typeof __esri.View>;
|
|
1065
|
+
declare function newViewsView(properties: __esri.ViewProperties): Promise<__esri.View>;
|
|
1066
|
+
declare function importViewsView2D(): Promise<typeof __esri.View2D>;
|
|
1067
|
+
declare function newViewsView2D(properties: __esri.View2DProperties): Promise<__esri.View2D>;
|
|
1068
|
+
declare function importViewsViewAnimation(): Promise<typeof __esri.ViewAnimation>;
|
|
1069
|
+
declare function newViewsViewAnimation(properties: __esri.ViewAnimationProperties): Promise<__esri.ViewAnimation>;
|
|
1070
|
+
declare function importWebdocApplicationPropertiesSearch(): Promise<typeof __esri.Search>;
|
|
1071
|
+
declare function newWebdocApplicationPropertiesSearch(properties: __esri.SearchProperties): Promise<__esri.Search>;
|
|
1072
|
+
declare function importWebdocApplicationPropertiesSearchLayer(): Promise<typeof __esri.SearchLayer>;
|
|
1073
|
+
declare function newWebdocApplicationPropertiesSearchLayer(properties: __esri.SearchLayerProperties): Promise<__esri.SearchLayer>;
|
|
1074
|
+
declare function importWebdocApplicationPropertiesSearchLayerField(): Promise<typeof __esri.SearchLayerField>;
|
|
1075
|
+
declare function newWebdocApplicationPropertiesSearchLayerField(properties: __esri.SearchLayerFieldProperties): Promise<__esri.SearchLayerField>;
|
|
1076
|
+
declare function importWebdocApplicationPropertiesSearchTable(): Promise<typeof __esri.SearchTable>;
|
|
1077
|
+
declare function newWebdocApplicationPropertiesSearchTable(properties: __esri.SearchTableProperties): Promise<__esri.SearchTable>;
|
|
1078
|
+
declare function importWebdocApplicationPropertiesSearchTableField(): Promise<typeof __esri.SearchTableField>;
|
|
1079
|
+
declare function newWebdocApplicationPropertiesSearchTableField(properties: __esri.SearchTableFieldProperties): Promise<__esri.SearchTableField>;
|
|
1080
|
+
declare function importWebdocApplicationPropertiesViewing(): Promise<typeof __esri.Viewing>;
|
|
1081
|
+
declare function newWebdocApplicationPropertiesViewing(properties: __esri.ViewingProperties): Promise<__esri.Viewing>;
|
|
1082
|
+
declare function importWebdocGeotriggersInfo(): Promise<typeof __esri.GeotriggersInfo>;
|
|
1083
|
+
declare function newWebdocGeotriggersInfo(properties: __esri.GeotriggersInfoProperties): Promise<__esri.GeotriggersInfo>;
|
|
1084
|
+
declare function importWebdocGeotriggersInfoDeviceLocationFeed(): Promise<typeof __esri.DeviceLocationFeed>;
|
|
1085
|
+
declare function newWebdocGeotriggersInfoDeviceLocationFeed(properties: __esri.DeviceLocationFeedProperties): Promise<__esri.DeviceLocationFeed>;
|
|
1086
|
+
declare function importWebdocGeotriggersInfoExpressionInfo(): Promise<typeof __esri.geotriggersInfoExpressionInfo>;
|
|
1087
|
+
declare function newWebdocGeotriggersInfoExpressionInfo(properties: __esri.geotriggersInfoExpressionInfoProperties): Promise<__esri.geotriggersInfoExpressionInfo>;
|
|
1088
|
+
declare function importWebdocGeotriggersInfoFeatureFenceParameters(): Promise<typeof __esri.FeatureFenceParameters>;
|
|
1089
|
+
declare function newWebdocGeotriggersInfoFeatureFenceParameters(properties: __esri.FeatureFenceParametersProperties): Promise<__esri.FeatureFenceParameters>;
|
|
1090
|
+
declare function importWebdocGeotriggersInfoFeatureFilter(): Promise<typeof __esri.geotriggersInfoFeatureFilter>;
|
|
1091
|
+
declare function newWebdocGeotriggersInfoFeatureFilter(properties: __esri.geotriggersInfoFeatureFilterProperties): Promise<__esri.geotriggersInfoFeatureFilter>;
|
|
1092
|
+
declare function importWebdocGeotriggersInfoFeatureLayerSource(): Promise<typeof __esri.FeatureLayerSource>;
|
|
1093
|
+
declare function newWebdocGeotriggersInfoFeatureLayerSource(properties: __esri.FeatureLayerSourceProperties): Promise<__esri.FeatureLayerSource>;
|
|
1094
|
+
declare function importWebdocGeotriggersInfoFenceGeotrigger(): Promise<typeof __esri.FenceGeotrigger>;
|
|
1095
|
+
declare function newWebdocGeotriggersInfoFenceGeotrigger(properties: __esri.FenceGeotriggerProperties): Promise<__esri.FenceGeotrigger>;
|
|
1096
|
+
declare function importWebdocGeotriggersInfoGeotrigger(): Promise<typeof __esri.Geotrigger>;
|
|
1097
|
+
declare function newWebdocGeotriggersInfoGeotrigger(properties: __esri.GeotriggerProperties): Promise<__esri.Geotrigger>;
|
|
1098
|
+
declare function importWebdocGeotriggersInfoGeotriggerNotificationOptions(): Promise<typeof __esri.GeotriggerNotificationOptions>;
|
|
1099
|
+
declare function newWebdocGeotriggersInfoGeotriggerNotificationOptions(properties: __esri.GeotriggerNotificationOptionsProperties): Promise<__esri.GeotriggerNotificationOptions>;
|
|
1100
|
+
declare function importWebdocIPSInfo(): Promise<typeof __esri.IPSInfo>;
|
|
1101
|
+
declare function newWebdocIPSInfo(properties: __esri.IPSInfoProperties): Promise<__esri.IPSInfo>;
|
|
1102
|
+
declare function importWebdocIpsPositioningService(): Promise<typeof __esri.PositioningService>;
|
|
1103
|
+
declare function newWebdocIpsPositioningService(properties: __esri.PositioningServiceProperties): Promise<__esri.PositioningService>;
|
|
1104
|
+
declare function importWebdocWidgetsTimeSlider(): Promise<typeof __esri.TimeSlider>;
|
|
1105
|
+
declare function newWebdocWidgetsTimeSlider(properties: __esri.TimeSliderProperties): Promise<__esri.TimeSlider>;
|
|
1106
|
+
declare function importWebDocument2D(): Promise<typeof __esri.WebDocument2D>;
|
|
1107
|
+
declare function newWebDocument2D(properties: __esri.WebDocument2DProperties): Promise<__esri.WebDocument2D>;
|
|
1108
|
+
declare function importWebMap(): Promise<typeof __esri.WebMap>;
|
|
1109
|
+
declare function newWebMap(properties: __esri.WebMapProperties): Promise<__esri.WebMap>;
|
|
1110
|
+
declare function importWebmapApplicationProperties(): Promise<typeof __esri.ApplicationProperties>;
|
|
1111
|
+
declare function newWebmapApplicationProperties(properties: __esri.ApplicationPropertiesProperties): Promise<__esri.ApplicationProperties>;
|
|
1112
|
+
declare function importWebmapBackgroundColorBackground(): Promise<typeof __esri.ColorBackground>;
|
|
1113
|
+
declare function newWebmapBackgroundColorBackground(properties: __esri.ColorBackgroundProperties): Promise<__esri.ColorBackground>;
|
|
1114
|
+
declare function importWebmapBookmark(): Promise<typeof __esri.Bookmark>;
|
|
1115
|
+
declare function newWebmapBookmark(properties: __esri.BookmarkProperties): Promise<__esri.Bookmark>;
|
|
1116
|
+
declare function importWebmapInitialViewProperties(): Promise<typeof __esri.InitialViewProperties>;
|
|
1117
|
+
declare function newWebmapInitialViewProperties(properties: __esri.InitialViewPropertiesProperties): Promise<__esri.InitialViewProperties>;
|
|
1118
|
+
declare function importWebScene(): Promise<typeof __esri.WebScene>;
|
|
1119
|
+
declare function newWebScene(properties: __esri.WebSceneProperties): Promise<__esri.WebScene>;
|
|
1120
|
+
declare function importWebsceneApplicationProperties(): Promise<typeof __esri.websceneApplicationProperties>;
|
|
1121
|
+
declare function newWebsceneApplicationProperties(properties: __esri.websceneApplicationPropertiesProperties): Promise<__esri.websceneApplicationProperties>;
|
|
1122
|
+
declare function importWebsceneBackgroundBackground(): Promise<typeof __esri.Background>;
|
|
1123
|
+
declare function newWebsceneBackgroundBackground(properties: __esri.BackgroundProperties): Promise<__esri.Background>;
|
|
1124
|
+
declare function importWebsceneBackgroundColorBackground(): Promise<typeof __esri.backgroundColorBackground>;
|
|
1125
|
+
declare function newWebsceneBackgroundColorBackground(properties: __esri.backgroundColorBackgroundProperties): Promise<__esri.backgroundColorBackground>;
|
|
1126
|
+
declare function importWebsceneEnvironment(): Promise<typeof __esri.Environment>;
|
|
1127
|
+
declare function newWebsceneEnvironment(properties: __esri.EnvironmentProperties): Promise<__esri.Environment>;
|
|
1128
|
+
declare function importWebsceneInitialViewProperties(): Promise<typeof __esri.websceneInitialViewProperties>;
|
|
1129
|
+
declare function newWebsceneInitialViewProperties(properties: __esri.websceneInitialViewPropertiesProperties): Promise<__esri.websceneInitialViewProperties>;
|
|
1130
|
+
declare function importWebscenePresentation(): Promise<typeof __esri.Presentation>;
|
|
1131
|
+
declare function newWebscenePresentation(properties: __esri.PresentationProperties): Promise<__esri.Presentation>;
|
|
1132
|
+
declare function importWebsceneSlide(): Promise<typeof __esri.Slide>;
|
|
1133
|
+
declare function newWebsceneSlide(properties: __esri.SlideProperties): Promise<__esri.Slide>;
|
|
1134
|
+
declare function importWebsceneSunLighting(): Promise<typeof __esri.websceneSunLighting>;
|
|
1135
|
+
declare function newWebsceneSunLighting(properties: __esri.websceneSunLightingProperties): Promise<__esri.websceneSunLighting>;
|
|
1136
|
+
declare function importWebsceneVirtualLighting(): Promise<typeof __esri.websceneVirtualLighting>;
|
|
1137
|
+
declare function newWebsceneVirtualLighting(properties: __esri.websceneVirtualLightingProperties): Promise<__esri.websceneVirtualLighting>;
|
|
1138
|
+
declare function importWidgetsAreaMeasurement2D(): Promise<typeof __esri.AreaMeasurement2D>;
|
|
1139
|
+
declare function newWidgetsAreaMeasurement2D(properties: __esri.AreaMeasurement2DProperties): Promise<__esri.AreaMeasurement2D>;
|
|
1140
|
+
declare function importWidgetsAreaMeasurement2DAreaMeasurement2DViewModel(): Promise<typeof __esri.AreaMeasurement2DViewModel>;
|
|
1141
|
+
declare function newWidgetsAreaMeasurement2DAreaMeasurement2DViewModel(properties: any): Promise<__esri.AreaMeasurement2DViewModel>;
|
|
1142
|
+
declare function importWidgetsAreaMeasurement3D(): Promise<typeof __esri.AreaMeasurement3D>;
|
|
1143
|
+
declare function newWidgetsAreaMeasurement3D(properties: __esri.AreaMeasurement3DProperties): Promise<__esri.AreaMeasurement3D>;
|
|
1144
|
+
declare function importWidgetsAreaMeasurement3DAreaMeasurement3DViewModel(): Promise<typeof __esri.AreaMeasurement3DViewModel>;
|
|
1145
|
+
declare function newWidgetsAreaMeasurement3DAreaMeasurement3DViewModel(properties: __esri.AreaMeasurement3DViewModelProperties): Promise<__esri.AreaMeasurement3DViewModel>;
|
|
1146
|
+
declare function importWidgetsAttachments(): Promise<typeof __esri.Attachments>;
|
|
1147
|
+
declare function newWidgetsAttachments(properties: __esri.AttachmentsProperties): Promise<__esri.Attachments>;
|
|
1148
|
+
declare function importWidgetsAttachmentsAttachmentsViewModel(): Promise<typeof __esri.AttachmentsViewModel>;
|
|
1149
|
+
declare function newWidgetsAttachmentsAttachmentsViewModel(properties: __esri.AttachmentsViewModelProperties): Promise<__esri.AttachmentsViewModel>;
|
|
1150
|
+
declare function importWidgetsAttribution(): Promise<typeof __esri.Attribution>;
|
|
1151
|
+
declare function newWidgetsAttribution(properties: __esri.AttributionProperties): Promise<__esri.Attribution>;
|
|
1152
|
+
declare function importWidgetsAttributionAttributionViewModel(): Promise<typeof __esri.AttributionViewModel>;
|
|
1153
|
+
declare function newWidgetsAttributionAttributionViewModel(properties: __esri.AttributionViewModelProperties): Promise<__esri.AttributionViewModel>;
|
|
1154
|
+
declare function importWidgetsBasemapGallery(): Promise<typeof __esri.BasemapGallery>;
|
|
1155
|
+
declare function newWidgetsBasemapGallery(properties: __esri.BasemapGalleryProperties): Promise<__esri.BasemapGallery>;
|
|
1156
|
+
declare function importWidgetsBasemapGalleryBasemapGalleryViewModel(): Promise<typeof __esri.BasemapGalleryViewModel>;
|
|
1157
|
+
declare function newWidgetsBasemapGalleryBasemapGalleryViewModel(properties: __esri.BasemapGalleryViewModelProperties): Promise<__esri.BasemapGalleryViewModel>;
|
|
1158
|
+
declare function importWidgetsBasemapGallerySupportBasemapGalleryItem(): Promise<typeof __esri.BasemapGalleryItem>;
|
|
1159
|
+
declare function newWidgetsBasemapGallerySupportBasemapGalleryItem(properties: __esri.BasemapGalleryItemProperties): Promise<__esri.BasemapGalleryItem>;
|
|
1160
|
+
declare function importWidgetsBasemapGallerySupportLocalBasemapsSource(): Promise<typeof __esri.LocalBasemapsSource>;
|
|
1161
|
+
declare function newWidgetsBasemapGallerySupportLocalBasemapsSource(properties: __esri.LocalBasemapsSourceProperties): Promise<__esri.LocalBasemapsSource>;
|
|
1162
|
+
declare function importWidgetsBasemapGallerySupportPortalBasemapsSource(): Promise<typeof __esri.PortalBasemapsSource>;
|
|
1163
|
+
declare function newWidgetsBasemapGallerySupportPortalBasemapsSource(properties: __esri.PortalBasemapsSourceProperties): Promise<__esri.PortalBasemapsSource>;
|
|
1164
|
+
declare function importWidgetsBasemapLayerList(): Promise<typeof __esri.BasemapLayerList>;
|
|
1165
|
+
declare function newWidgetsBasemapLayerList(properties: __esri.BasemapLayerListProperties): Promise<__esri.BasemapLayerList>;
|
|
1166
|
+
declare function importWidgetsBasemapLayerListBasemapLayerListViewModel(): Promise<typeof __esri.BasemapLayerListViewModel>;
|
|
1167
|
+
declare function newWidgetsBasemapLayerListBasemapLayerListViewModel(properties: __esri.BasemapLayerListViewModelProperties): Promise<__esri.BasemapLayerListViewModel>;
|
|
1168
|
+
declare function importWidgetsBasemapToggle(): Promise<typeof __esri.BasemapToggle>;
|
|
1169
|
+
declare function newWidgetsBasemapToggle(properties: __esri.BasemapToggleProperties): Promise<__esri.BasemapToggle>;
|
|
1170
|
+
declare function importWidgetsBasemapToggleBasemapToggleViewModel(): Promise<typeof __esri.BasemapToggleViewModel>;
|
|
1171
|
+
declare function newWidgetsBasemapToggleBasemapToggleViewModel(properties: __esri.BasemapToggleViewModelProperties): Promise<__esri.BasemapToggleViewModel>;
|
|
1172
|
+
declare function importWidgetsBatchAttributeForm(): Promise<typeof __esri.BatchAttributeForm>;
|
|
1173
|
+
declare function newWidgetsBatchAttributeForm(properties: __esri.BatchAttributeFormProperties): Promise<__esri.BatchAttributeForm>;
|
|
1174
|
+
declare function importWidgetsBookmarks(): Promise<typeof __esri.Bookmarks>;
|
|
1175
|
+
declare function newWidgetsBookmarks(properties: __esri.BookmarksProperties): Promise<__esri.Bookmarks>;
|
|
1176
|
+
declare function importWidgetsBookmarksBookmarksViewModel(): Promise<typeof __esri.BookmarksViewModel>;
|
|
1177
|
+
declare function newWidgetsBookmarksBookmarksViewModel(properties: __esri.BookmarksViewModelProperties): Promise<__esri.BookmarksViewModel>;
|
|
1178
|
+
declare function importWidgetsBuildingExplorer(): Promise<typeof __esri.BuildingExplorer>;
|
|
1179
|
+
declare function newWidgetsBuildingExplorer(properties: __esri.BuildingExplorerProperties): Promise<__esri.BuildingExplorer>;
|
|
1180
|
+
declare function importWidgetsBuildingExplorerBuildingExplorerViewModel(): Promise<typeof __esri.BuildingExplorerViewModel>;
|
|
1181
|
+
declare function newWidgetsBuildingExplorerBuildingExplorerViewModel(properties: __esri.BuildingExplorerViewModelProperties): Promise<__esri.BuildingExplorerViewModel>;
|
|
1182
|
+
declare function importWidgetsBuildingExplorerBuildingLevel(): Promise<typeof __esri.BuildingLevel>;
|
|
1183
|
+
declare function newWidgetsBuildingExplorerBuildingLevel(properties: __esri.BuildingLevelProperties): Promise<__esri.BuildingLevel>;
|
|
1184
|
+
declare function importWidgetsBuildingExplorerBuildingPhase(): Promise<typeof __esri.BuildingPhase>;
|
|
1185
|
+
declare function newWidgetsBuildingExplorerBuildingPhase(properties: __esri.BuildingPhaseProperties): Promise<__esri.BuildingPhase>;
|
|
1186
|
+
declare function importWidgetsCatalogLayerList(): Promise<typeof __esri.CatalogLayerList>;
|
|
1187
|
+
declare function newWidgetsCatalogLayerList(properties: __esri.CatalogLayerListProperties): Promise<__esri.CatalogLayerList>;
|
|
1188
|
+
declare function importWidgetsCatalogLayerListCatalogLayerListViewModel(): Promise<typeof __esri.CatalogLayerListViewModel>;
|
|
1189
|
+
declare function newWidgetsCatalogLayerListCatalogLayerListViewModel(properties: __esri.CatalogLayerListViewModelProperties): Promise<__esri.CatalogLayerListViewModel>;
|
|
1190
|
+
declare function importWidgetsCompass(): Promise<typeof __esri.Compass>;
|
|
1191
|
+
declare function newWidgetsCompass(properties: __esri.CompassProperties): Promise<__esri.Compass>;
|
|
1192
|
+
declare function importWidgetsCompassCompassViewModel(): Promise<typeof __esri.CompassViewModel>;
|
|
1193
|
+
declare function newWidgetsCompassCompassViewModel(properties: __esri.CompassViewModelProperties): Promise<__esri.CompassViewModel>;
|
|
1194
|
+
declare function importWidgetsCoordinateConversion(): Promise<typeof __esri.CoordinateConversion>;
|
|
1195
|
+
declare function newWidgetsCoordinateConversion(properties: __esri.CoordinateConversionProperties): Promise<__esri.CoordinateConversion>;
|
|
1196
|
+
declare function importWidgetsCoordinateConversionCoordinateConversionViewModel(): Promise<typeof __esri.CoordinateConversionViewModel>;
|
|
1197
|
+
declare function newWidgetsCoordinateConversionCoordinateConversionViewModel(properties: __esri.CoordinateConversionViewModelProperties): Promise<__esri.CoordinateConversionViewModel>;
|
|
1198
|
+
declare function importWidgetsCoordinateConversionSupportConversion(): Promise<typeof __esri.Conversion>;
|
|
1199
|
+
declare function newWidgetsCoordinateConversionSupportConversion(properties: __esri.ConversionProperties): Promise<__esri.Conversion>;
|
|
1200
|
+
declare function importWidgetsCoordinateConversionSupportFormat(): Promise<typeof __esri.Format>;
|
|
1201
|
+
declare function newWidgetsCoordinateConversionSupportFormat(properties: __esri.FormatProperties): Promise<__esri.Format>;
|
|
1202
|
+
declare function importWidgetsDaylight(): Promise<typeof __esri.Daylight>;
|
|
1203
|
+
declare function newWidgetsDaylight(properties: __esri.DaylightProperties): Promise<__esri.Daylight>;
|
|
1204
|
+
declare function importWidgetsDaylightDaylightViewModel(): Promise<typeof __esri.DaylightViewModel>;
|
|
1205
|
+
declare function newWidgetsDaylightDaylightViewModel(properties: __esri.DaylightViewModelProperties): Promise<__esri.DaylightViewModel>;
|
|
1206
|
+
declare function importWidgetsDirectionalPad(): Promise<typeof __esri.DirectionalPad>;
|
|
1207
|
+
declare function newWidgetsDirectionalPad(properties: __esri.DirectionalPadProperties): Promise<__esri.DirectionalPad>;
|
|
1208
|
+
declare function importWidgetsDirectionalPadDirectionalPadViewModel(): Promise<typeof __esri.DirectionalPadViewModel>;
|
|
1209
|
+
declare function newWidgetsDirectionalPadDirectionalPadViewModel(properties: __esri.DirectionalPadViewModelProperties): Promise<__esri.DirectionalPadViewModel>;
|
|
1210
|
+
declare function importWidgetsDirections(): Promise<typeof __esri.Directions>;
|
|
1211
|
+
declare function newWidgetsDirections(properties: __esri.DirectionsProperties): Promise<__esri.Directions>;
|
|
1212
|
+
declare function importWidgetsDirectionsDirectionsViewModel(): Promise<typeof __esri.DirectionsViewModel>;
|
|
1213
|
+
declare function newWidgetsDirectionsDirectionsViewModel(properties: __esri.DirectionsViewModelProperties): Promise<__esri.DirectionsViewModel>;
|
|
1214
|
+
declare function importWidgetsDirectLineMeasurement3D(): Promise<typeof __esri.DirectLineMeasurement3D>;
|
|
1215
|
+
declare function newWidgetsDirectLineMeasurement3D(properties: __esri.DirectLineMeasurement3DProperties): Promise<__esri.DirectLineMeasurement3D>;
|
|
1216
|
+
declare function importWidgetsDirectLineMeasurement3DDirectLineMeasurement3DViewModel(): Promise<typeof __esri.DirectLineMeasurement3DViewModel>;
|
|
1217
|
+
declare function newWidgetsDirectLineMeasurement3DDirectLineMeasurement3DViewModel(properties: __esri.DirectLineMeasurement3DViewModelProperties): Promise<__esri.DirectLineMeasurement3DViewModel>;
|
|
1218
|
+
declare function importWidgetsDistanceMeasurement2D(): Promise<typeof __esri.DistanceMeasurement2D>;
|
|
1219
|
+
declare function newWidgetsDistanceMeasurement2D(properties: __esri.DistanceMeasurement2DProperties): Promise<__esri.DistanceMeasurement2D>;
|
|
1220
|
+
declare function importWidgetsDistanceMeasurement2DDistanceMeasurement2DViewModel(): Promise<typeof __esri.DistanceMeasurement2DViewModel>;
|
|
1221
|
+
declare function newWidgetsDistanceMeasurement2DDistanceMeasurement2DViewModel(properties: __esri.DistanceMeasurement2DViewModelProperties): Promise<__esri.DistanceMeasurement2DViewModel>;
|
|
1222
|
+
declare function importWidgetsEditor(): Promise<typeof __esri.Editor>;
|
|
1223
|
+
declare function newWidgetsEditor(properties: __esri.EditorProperties): Promise<__esri.Editor>;
|
|
1224
|
+
declare function importWidgetsEditorCreateFeaturesWorkflow(): Promise<typeof __esri.CreateFeaturesWorkflow>;
|
|
1225
|
+
declare function newWidgetsEditorCreateFeaturesWorkflow(properties: __esri.CreateFeaturesWorkflowProperties): Promise<__esri.CreateFeaturesWorkflow>;
|
|
1226
|
+
declare function importWidgetsEditorCreateFeaturesWorkflowData(): Promise<typeof __esri.CreateFeaturesWorkflowData>;
|
|
1227
|
+
declare function newWidgetsEditorCreateFeaturesWorkflowData(properties: __esri.CreateFeaturesWorkflowDataProperties): Promise<__esri.CreateFeaturesWorkflowData>;
|
|
1228
|
+
declare function importWidgetsEditorEditorViewModel(): Promise<typeof __esri.EditorViewModel>;
|
|
1229
|
+
declare function newWidgetsEditorEditorViewModel(properties: __esri.EditorViewModelProperties): Promise<__esri.EditorViewModel>;
|
|
1230
|
+
declare function importWidgetsEditorEdits(): Promise<typeof __esri.Edits>;
|
|
1231
|
+
declare function newWidgetsEditorEdits(properties: __esri.EditsProperties): Promise<__esri.Edits>;
|
|
1232
|
+
declare function importWidgetsEditorUpdateWorkflow(): Promise<typeof __esri.UpdateWorkflow>;
|
|
1233
|
+
declare function newWidgetsEditorUpdateWorkflow(properties: __esri.UpdateWorkflowProperties): Promise<__esri.UpdateWorkflow>;
|
|
1234
|
+
declare function importWidgetsEditorUpdateWorkflowData(): Promise<typeof __esri.UpdateWorkflowData>;
|
|
1235
|
+
declare function newWidgetsEditorUpdateWorkflowData(properties: __esri.UpdateWorkflowDataProperties): Promise<__esri.UpdateWorkflowData>;
|
|
1236
|
+
declare function importWidgetsEditorWorkflow(): Promise<typeof __esri.Workflow>;
|
|
1237
|
+
declare function newWidgetsEditorWorkflow(properties: __esri.WorkflowProperties): Promise<__esri.Workflow>;
|
|
1238
|
+
declare function importWidgetsEditorSupportEditorItem(): Promise<typeof __esri.EditorItem>;
|
|
1239
|
+
declare function newWidgetsEditorSupportEditorItem(properties: __esri.EditorItemProperties): Promise<__esri.EditorItem>;
|
|
1240
|
+
declare function importWidgetsElevationProfile(): Promise<typeof __esri.ElevationProfile>;
|
|
1241
|
+
declare function newWidgetsElevationProfile(properties: __esri.ElevationProfileProperties): Promise<__esri.ElevationProfile>;
|
|
1242
|
+
declare function importWidgetsElevationProfileElevationProfileLine(): Promise<typeof __esri.ElevationProfileLine>;
|
|
1243
|
+
declare function newWidgetsElevationProfileElevationProfileLine(properties: __esri.ElevationProfileLineProperties): Promise<__esri.ElevationProfileLine>;
|
|
1244
|
+
declare function importWidgetsElevationProfileElevationProfileLineGround(): Promise<typeof __esri.ElevationProfileLineGround>;
|
|
1245
|
+
declare function newWidgetsElevationProfileElevationProfileLineGround(properties: __esri.ElevationProfileLineGroundProperties): Promise<__esri.ElevationProfileLineGround>;
|
|
1246
|
+
declare function importWidgetsElevationProfileElevationProfileLineInput(): Promise<typeof __esri.ElevationProfileLineInput>;
|
|
1247
|
+
declare function newWidgetsElevationProfileElevationProfileLineInput(properties: __esri.ElevationProfileLineInputProperties): Promise<__esri.ElevationProfileLineInput>;
|
|
1248
|
+
declare function importWidgetsElevationProfileElevationProfileLineQuery(): Promise<typeof __esri.ElevationProfileLineQuery>;
|
|
1249
|
+
declare function newWidgetsElevationProfileElevationProfileLineQuery(properties: __esri.ElevationProfileLineQueryProperties): Promise<__esri.ElevationProfileLineQuery>;
|
|
1250
|
+
declare function importWidgetsElevationProfileElevationProfileLineView(): Promise<typeof __esri.ElevationProfileLineView>;
|
|
1251
|
+
declare function newWidgetsElevationProfileElevationProfileLineView(properties: __esri.ElevationProfileLineViewProperties): Promise<__esri.ElevationProfileLineView>;
|
|
1252
|
+
declare function importWidgetsElevationProfileElevationProfileViewModel(): Promise<typeof __esri.ElevationProfileViewModel>;
|
|
1253
|
+
declare function newWidgetsElevationProfileElevationProfileViewModel(properties: __esri.ElevationProfileViewModelProperties): Promise<__esri.ElevationProfileViewModel>;
|
|
1254
|
+
declare function importWidgetsExpand(): Promise<typeof __esri.Expand>;
|
|
1255
|
+
declare function newWidgetsExpand(properties: __esri.ExpandProperties): Promise<__esri.Expand>;
|
|
1256
|
+
declare function importWidgetsExpandExpandViewModel(): Promise<typeof __esri.ExpandViewModel>;
|
|
1257
|
+
declare function newWidgetsExpandExpandViewModel(properties: __esri.ExpandViewModelProperties): Promise<__esri.ExpandViewModel>;
|
|
1258
|
+
declare function importWidgetsFeature(): Promise<typeof __esri.Feature>;
|
|
1259
|
+
declare function newWidgetsFeature(properties: __esri.FeatureProperties): Promise<__esri.Feature>;
|
|
1260
|
+
declare function importWidgetsFeatureFeatureViewModel(): Promise<typeof __esri.FeatureViewModel>;
|
|
1261
|
+
declare function newWidgetsFeatureFeatureViewModel(properties: __esri.FeatureViewModelProperties): Promise<__esri.FeatureViewModel>;
|
|
1262
|
+
declare function importWidgetsFeatureForm(): Promise<typeof __esri.FeatureForm>;
|
|
1263
|
+
declare function newWidgetsFeatureForm(properties: __esri.FeatureFormProperties): Promise<__esri.FeatureForm>;
|
|
1264
|
+
declare function importWidgetsFeatureFormFeatureFormViewModel(): Promise<typeof __esri.FeatureFormViewModel>;
|
|
1265
|
+
declare function newWidgetsFeatureFormFeatureFormViewModel(properties: __esri.FeatureFormViewModelProperties): Promise<__esri.FeatureFormViewModel>;
|
|
1266
|
+
declare function importWidgetsFeatureFormFieldInput(): Promise<typeof __esri.FieldInput>;
|
|
1267
|
+
declare function newWidgetsFeatureFormFieldInput(properties: __esri.FieldInputProperties): Promise<__esri.FieldInput>;
|
|
1268
|
+
declare function importWidgetsFeatureFormGroupInput(): Promise<typeof __esri.GroupInput>;
|
|
1269
|
+
declare function newWidgetsFeatureFormGroupInput(properties: __esri.GroupInputProperties): Promise<__esri.GroupInput>;
|
|
1270
|
+
declare function importWidgetsFeatureFormRelationshipInput(): Promise<typeof __esri.RelationshipInput>;
|
|
1271
|
+
declare function newWidgetsFeatureFormRelationshipInput(properties: __esri.RelationshipInputProperties): Promise<__esri.RelationshipInput>;
|
|
1272
|
+
declare function importWidgetsFeatures(): Promise<typeof __esri.Features>;
|
|
1273
|
+
declare function newWidgetsFeatures(properties: __esri.FeaturesProperties): Promise<__esri.Features>;
|
|
1274
|
+
declare function importWidgetsFeaturesFeaturesViewModel(): Promise<typeof __esri.FeaturesViewModel>;
|
|
1275
|
+
declare function newWidgetsFeaturesFeaturesViewModel(properties: __esri.FeaturesViewModelProperties): Promise<__esri.FeaturesViewModel>;
|
|
1276
|
+
declare function importWidgetsFeatureTable(): Promise<typeof __esri.FeatureTable>;
|
|
1277
|
+
declare function newWidgetsFeatureTable(properties: __esri.FeatureTableProperties): Promise<__esri.FeatureTable>;
|
|
1278
|
+
declare function importWidgetsFeatureTableAttachmentsColumn(): Promise<typeof __esri.AttachmentsColumn>;
|
|
1279
|
+
declare function newWidgetsFeatureTableAttachmentsColumn(properties: __esri.AttachmentsColumnProperties): Promise<__esri.AttachmentsColumn>;
|
|
1280
|
+
declare function importWidgetsFeatureTableActionColumn(): Promise<typeof __esri.ActionColumn>;
|
|
1281
|
+
declare function newWidgetsFeatureTableActionColumn(properties: __esri.ActionColumnProperties): Promise<__esri.ActionColumn>;
|
|
1282
|
+
declare function importWidgetsFeatureTableFeatureTableViewModel(): Promise<typeof __esri.FeatureTableViewModel>;
|
|
1283
|
+
declare function newWidgetsFeatureTableFeatureTableViewModel(properties: __esri.FeatureTableViewModelProperties): Promise<__esri.FeatureTableViewModel>;
|
|
1284
|
+
declare function importWidgetsFeatureTableFieldColumn(): Promise<typeof __esri.FieldColumn>;
|
|
1285
|
+
declare function newWidgetsFeatureTableFieldColumn(properties: __esri.FieldColumnProperties): Promise<__esri.FieldColumn>;
|
|
1286
|
+
declare function importWidgetsFeatureTableRelationshipColumn(): Promise<typeof __esri.RelationshipColumn>;
|
|
1287
|
+
declare function newWidgetsFeatureTableRelationshipColumn(properties: __esri.RelationshipColumnProperties): Promise<__esri.RelationshipColumn>;
|
|
1288
|
+
declare function importWidgetsFeatureTableGridColumn(): Promise<typeof __esri.Column>;
|
|
1289
|
+
declare function newWidgetsFeatureTableGridColumn(properties: __esri.ColumnProperties): Promise<__esri.Column>;
|
|
1290
|
+
declare function importWidgetsFeatureTableGridGroupColumn(): Promise<typeof __esri.GroupColumn>;
|
|
1291
|
+
declare function newWidgetsFeatureTableGridGroupColumn(properties: __esri.GroupColumnProperties): Promise<__esri.GroupColumn>;
|
|
1292
|
+
declare function importWidgetsFeatureTableGridSupportButtonMenu(): Promise<typeof __esri.ButtonMenu>;
|
|
1293
|
+
declare function newWidgetsFeatureTableGridSupportButtonMenu(properties: __esri.ButtonMenuProperties): Promise<__esri.ButtonMenu>;
|
|
1294
|
+
declare function importWidgetsFeatureTableGridSupportButtonMenuItem(): Promise<typeof __esri.ButtonMenuItem>;
|
|
1295
|
+
declare function newWidgetsFeatureTableGridSupportButtonMenuItem(properties: __esri.ButtonMenuItemProperties): Promise<__esri.ButtonMenuItem>;
|
|
1296
|
+
declare function importWidgetsFeatureTableGridSupportButtonMenuViewModel(): Promise<typeof __esri.ButtonMenuViewModel>;
|
|
1297
|
+
declare function newWidgetsFeatureTableGridSupportButtonMenuViewModel(properties: __esri.ButtonMenuViewModelProperties): Promise<__esri.ButtonMenuViewModel>;
|
|
1298
|
+
declare function importWidgetsFeatureTableSupportColumnTemplate(): Promise<typeof __esri.ColumnTemplate>;
|
|
1299
|
+
declare function newWidgetsFeatureTableSupportColumnTemplate(properties: __esri.ColumnTemplateProperties): Promise<__esri.ColumnTemplate>;
|
|
1300
|
+
declare function importWidgetsFeatureTableSupportColumnTemplateBase(): Promise<typeof __esri.ColumnTemplateBase>;
|
|
1301
|
+
declare function newWidgetsFeatureTableSupportColumnTemplateBase(properties: __esri.ColumnTemplateBaseProperties): Promise<__esri.ColumnTemplateBase>;
|
|
1302
|
+
declare function importWidgetsFeatureTableSupportFieldColumnTemplate(): Promise<typeof __esri.FieldColumnTemplate>;
|
|
1303
|
+
declare function newWidgetsFeatureTableSupportFieldColumnTemplate(properties: __esri.FieldColumnTemplateProperties): Promise<__esri.FieldColumnTemplate>;
|
|
1304
|
+
declare function importWidgetsFeatureTableSupportGroupColumnTemplate(): Promise<typeof __esri.GroupColumnTemplate>;
|
|
1305
|
+
declare function newWidgetsFeatureTableSupportGroupColumnTemplate(properties: __esri.GroupColumnTemplateProperties): Promise<__esri.GroupColumnTemplate>;
|
|
1306
|
+
declare function importWidgetsFeatureTableSupportTableTemplate(): Promise<typeof __esri.TableTemplate>;
|
|
1307
|
+
declare function newWidgetsFeatureTableSupportTableTemplate(properties: __esri.TableTemplateProperties): Promise<__esri.TableTemplate>;
|
|
1308
|
+
declare function importWidgetsFeatureTemplates(): Promise<typeof __esri.FeatureTemplates>;
|
|
1309
|
+
declare function newWidgetsFeatureTemplates(properties: __esri.FeatureTemplatesProperties): Promise<__esri.FeatureTemplates>;
|
|
1310
|
+
declare function importWidgetsFeatureTemplatesFeatureTemplatesViewModel(): Promise<typeof __esri.FeatureTemplatesViewModel>;
|
|
1311
|
+
declare function newWidgetsFeatureTemplatesFeatureTemplatesViewModel(properties: __esri.FeatureTemplatesViewModelProperties): Promise<__esri.FeatureTemplatesViewModel>;
|
|
1312
|
+
declare function importWidgetsFeatureTemplatesTemplateItem(): Promise<typeof __esri.TemplateItem>;
|
|
1313
|
+
declare function newWidgetsFeatureTemplatesTemplateItem(properties: __esri.TemplateItemProperties): Promise<__esri.TemplateItem>;
|
|
1314
|
+
declare function importWidgetsFeatureTemplatesTemplateItemGroup(): Promise<typeof __esri.TemplateItemGroup>;
|
|
1315
|
+
declare function newWidgetsFeatureTemplatesTemplateItemGroup(properties: __esri.TemplateItemGroupProperties): Promise<__esri.TemplateItemGroup>;
|
|
1316
|
+
declare function importWidgetsFloorFilter(): Promise<typeof __esri.FloorFilter>;
|
|
1317
|
+
declare function newWidgetsFloorFilter(properties: __esri.FloorFilterProperties): Promise<__esri.FloorFilter>;
|
|
1318
|
+
declare function importWidgetsFloorFilterFloorFilterViewModel(): Promise<typeof __esri.FloorFilterViewModel>;
|
|
1319
|
+
declare function newWidgetsFloorFilterFloorFilterViewModel(properties: __esri.FloorFilterViewModelProperties): Promise<__esri.FloorFilterViewModel>;
|
|
1320
|
+
declare function importWidgetsFullscreen(): Promise<typeof __esri.Fullscreen>;
|
|
1321
|
+
declare function newWidgetsFullscreen(properties: __esri.FullscreenProperties): Promise<__esri.Fullscreen>;
|
|
1322
|
+
declare function importWidgetsFullscreenFullscreenViewModel(): Promise<typeof __esri.FullscreenViewModel>;
|
|
1323
|
+
declare function newWidgetsFullscreenFullscreenViewModel(properties: __esri.FullscreenViewModelProperties): Promise<__esri.FullscreenViewModel>;
|
|
1324
|
+
declare function importWidgetsHistogram(): Promise<typeof __esri.Histogram>;
|
|
1325
|
+
declare function newWidgetsHistogram(properties: __esri.HistogramProperties): Promise<__esri.Histogram>;
|
|
1326
|
+
declare function importWidgetsHistogramHistogramViewModel(): Promise<typeof __esri.HistogramViewModel>;
|
|
1327
|
+
declare function newWidgetsHistogramHistogramViewModel(properties: __esri.HistogramViewModelProperties): Promise<__esri.HistogramViewModel>;
|
|
1328
|
+
declare function importWidgetsHistogramRangeSlider(): Promise<typeof __esri.HistogramRangeSlider>;
|
|
1329
|
+
declare function newWidgetsHistogramRangeSlider(properties: __esri.HistogramRangeSliderProperties): Promise<__esri.HistogramRangeSlider>;
|
|
1330
|
+
declare function importWidgetsHistogramRangeSliderHistogramRangeSliderViewModel(): Promise<typeof __esri.HistogramRangeSliderViewModel>;
|
|
1331
|
+
declare function newWidgetsHistogramRangeSliderHistogramRangeSliderViewModel(properties: __esri.HistogramRangeSliderViewModelProperties): Promise<__esri.HistogramRangeSliderViewModel>;
|
|
1332
|
+
declare function importWidgetsHome(): Promise<typeof __esri.Home>;
|
|
1333
|
+
declare function newWidgetsHome(properties: __esri.HomeProperties): Promise<__esri.Home>;
|
|
1334
|
+
declare function importWidgetsHomeHomeViewModel(): Promise<typeof __esri.HomeViewModel>;
|
|
1335
|
+
declare function newWidgetsHomeHomeViewModel(properties: __esri.HomeViewModelProperties): Promise<__esri.HomeViewModel>;
|
|
1336
|
+
declare function importWidgetsLayerList(): Promise<typeof __esri.LayerList>;
|
|
1337
|
+
declare function newWidgetsLayerList(properties: __esri.LayerListProperties): Promise<__esri.LayerList>;
|
|
1338
|
+
declare function importWidgetsLayerListLayerListViewModel(): Promise<typeof __esri.LayerListViewModel>;
|
|
1339
|
+
declare function newWidgetsLayerListLayerListViewModel(properties: __esri.LayerListViewModelProperties): Promise<__esri.LayerListViewModel>;
|
|
1340
|
+
declare function importWidgetsLayerListListItem(): Promise<typeof __esri.ListItem>;
|
|
1341
|
+
declare function newWidgetsLayerListListItem(properties: __esri.ListItemProperties): Promise<__esri.ListItem>;
|
|
1342
|
+
declare function importWidgetsLayerListListItemPanel(): Promise<typeof __esri.ListItemPanel>;
|
|
1343
|
+
declare function newWidgetsLayerListListItemPanel(properties: __esri.ListItemPanelProperties): Promise<__esri.ListItemPanel>;
|
|
1344
|
+
declare function importWidgetsLegend(): Promise<typeof __esri.Legend>;
|
|
1345
|
+
declare function newWidgetsLegend(properties: __esri.LegendProperties): Promise<__esri.Legend>;
|
|
1346
|
+
declare function importWidgetsLegendLegendViewModel(): Promise<typeof __esri.LegendViewModel>;
|
|
1347
|
+
declare function newWidgetsLegendLegendViewModel(properties: __esri.LegendViewModelProperties): Promise<__esri.LegendViewModel>;
|
|
1348
|
+
declare function importWidgetsLegendSupportActiveLayerInfo(): Promise<typeof __esri.ActiveLayerInfo>;
|
|
1349
|
+
declare function newWidgetsLegendSupportActiveLayerInfo(properties: __esri.ActiveLayerInfoProperties): Promise<__esri.ActiveLayerInfo>;
|
|
1350
|
+
declare function importWidgetsLineOfSight(): Promise<typeof __esri.LineOfSight>;
|
|
1351
|
+
declare function newWidgetsLineOfSight(properties: __esri.LineOfSightProperties): Promise<__esri.LineOfSight>;
|
|
1352
|
+
declare function importWidgetsLineOfSightLineOfSightTarget(): Promise<typeof __esri.LineOfSightTarget>;
|
|
1353
|
+
declare function newWidgetsLineOfSightLineOfSightTarget(properties: __esri.LineOfSightTargetProperties): Promise<__esri.LineOfSightTarget>;
|
|
1354
|
+
declare function importWidgetsLineOfSightLineOfSightViewModel(): Promise<typeof __esri.LineOfSightViewModel>;
|
|
1355
|
+
declare function newWidgetsLineOfSightLineOfSightViewModel(properties: __esri.LineOfSightViewModelProperties): Promise<__esri.LineOfSightViewModel>;
|
|
1356
|
+
declare function importWidgetsLocate(): Promise<typeof __esri.Locate>;
|
|
1357
|
+
declare function newWidgetsLocate(properties: __esri.LocateProperties): Promise<__esri.Locate>;
|
|
1358
|
+
declare function importWidgetsLocateLocateViewModel(): Promise<typeof __esri.LocateViewModel>;
|
|
1359
|
+
declare function newWidgetsLocateLocateViewModel(properties: __esri.LocateViewModelProperties): Promise<__esri.LocateViewModel>;
|
|
1360
|
+
declare function importWidgetsMeasurement(): Promise<typeof __esri.Measurement>;
|
|
1361
|
+
declare function newWidgetsMeasurement(properties: __esri.MeasurementProperties): Promise<__esri.Measurement>;
|
|
1362
|
+
declare function importWidgetsMeasurementMeasurementViewModel(): Promise<typeof __esri.MeasurementViewModel>;
|
|
1363
|
+
declare function newWidgetsMeasurementMeasurementViewModel(properties: __esri.MeasurementViewModelProperties): Promise<__esri.MeasurementViewModel>;
|
|
1364
|
+
declare function importWidgetsNavigationToggle(): Promise<typeof __esri.NavigationToggle>;
|
|
1365
|
+
declare function newWidgetsNavigationToggle(properties: __esri.NavigationToggleProperties): Promise<__esri.NavigationToggle>;
|
|
1366
|
+
declare function importWidgetsNavigationToggleNavigationToggleViewModel(): Promise<typeof __esri.NavigationToggleViewModel>;
|
|
1367
|
+
declare function newWidgetsNavigationToggleNavigationToggleViewModel(properties: __esri.NavigationToggleViewModelProperties): Promise<__esri.NavigationToggleViewModel>;
|
|
1368
|
+
declare function importWidgetsOrientedImageryViewer(): Promise<typeof __esri.OrientedImageryViewer>;
|
|
1369
|
+
declare function newWidgetsOrientedImageryViewer(properties: __esri.OrientedImageryViewerProperties): Promise<__esri.OrientedImageryViewer>;
|
|
1370
|
+
declare function importWidgetsOrientedImageryViewerOrientedImageryViewerViewModel(): Promise<typeof __esri.OrientedImageryViewerViewModel>;
|
|
1371
|
+
declare function newWidgetsOrientedImageryViewerOrientedImageryViewerViewModel(properties: __esri.OrientedImageryViewerViewModelProperties): Promise<__esri.OrientedImageryViewerViewModel>;
|
|
1372
|
+
declare function importWidgetsPopup(): Promise<typeof __esri.Popup>;
|
|
1373
|
+
declare function newWidgetsPopup(properties: __esri.PopupProperties): Promise<__esri.Popup>;
|
|
1374
|
+
declare function importWidgetsPopupPopupViewModel(): Promise<typeof __esri.PopupViewModel>;
|
|
1375
|
+
declare function newWidgetsPopupPopupViewModel(properties: __esri.PopupViewModelProperties): Promise<__esri.PopupViewModel>;
|
|
1376
|
+
declare function importWidgetsPrint(): Promise<typeof __esri.Print>;
|
|
1377
|
+
declare function newWidgetsPrint(properties: __esri.PrintProperties): Promise<__esri.Print>;
|
|
1378
|
+
declare function importWidgetsPrintCustomTemplate(): Promise<typeof __esri.CustomTemplate>;
|
|
1379
|
+
declare function newWidgetsPrintCustomTemplate(properties: __esri.CustomTemplateProperties): Promise<__esri.CustomTemplate>;
|
|
1380
|
+
declare function importWidgetsPrintPrintViewModel(): Promise<typeof __esri.PrintViewModel>;
|
|
1381
|
+
declare function newWidgetsPrintPrintViewModel(properties: __esri.PrintViewModelProperties): Promise<__esri.PrintViewModel>;
|
|
1382
|
+
declare function importWidgetsPrintTemplateOptions(): Promise<typeof __esri.TemplateOptions>;
|
|
1383
|
+
declare function newWidgetsPrintTemplateOptions(properties: __esri.TemplateOptionsProperties): Promise<__esri.TemplateOptions>;
|
|
1384
|
+
declare function importWidgetsScaleBar(): Promise<typeof __esri.ScaleBar>;
|
|
1385
|
+
declare function newWidgetsScaleBar(properties: __esri.ScaleBarProperties): Promise<__esri.ScaleBar>;
|
|
1386
|
+
declare function importWidgetsScaleBarScaleBarViewModel(): Promise<typeof __esri.ScaleBarViewModel>;
|
|
1387
|
+
declare function newWidgetsScaleBarScaleBarViewModel(properties: __esri.ScaleBarViewModelProperties): Promise<__esri.ScaleBarViewModel>;
|
|
1388
|
+
declare function importWidgetsScaleRangeSlider(): Promise<typeof __esri.ScaleRangeSlider>;
|
|
1389
|
+
declare function newWidgetsScaleRangeSlider(properties: __esri.ScaleRangeSliderProperties): Promise<__esri.ScaleRangeSlider>;
|
|
1390
|
+
declare function importWidgetsScaleRangeSliderScaleRanges(): Promise<typeof __esri.ScaleRanges>;
|
|
1391
|
+
declare function newWidgetsScaleRangeSliderScaleRanges(properties: __esri.ScaleRangesProperties): Promise<__esri.ScaleRanges>;
|
|
1392
|
+
declare function importWidgetsScaleRangeSliderScaleRangeSliderViewModel(): Promise<typeof __esri.ScaleRangeSliderViewModel>;
|
|
1393
|
+
declare function newWidgetsScaleRangeSliderScaleRangeSliderViewModel(properties: __esri.ScaleRangeSliderViewModelProperties): Promise<__esri.ScaleRangeSliderViewModel>;
|
|
1394
|
+
declare function importWidgetsSearch(): Promise<typeof __esri.widgetsSearch>;
|
|
1395
|
+
declare function newWidgetsSearch(properties: __esri.widgetsSearchProperties): Promise<__esri.widgetsSearch>;
|
|
1396
|
+
declare function importWidgetsSearchLayerSearchSource(): Promise<typeof __esri.LayerSearchSource>;
|
|
1397
|
+
declare function newWidgetsSearchLayerSearchSource(properties: __esri.LayerSearchSourceProperties): Promise<__esri.LayerSearchSource>;
|
|
1398
|
+
declare function importWidgetsSearchLocatorSearchSource(): Promise<typeof __esri.LocatorSearchSource>;
|
|
1399
|
+
declare function newWidgetsSearchLocatorSearchSource(properties: __esri.LocatorSearchSourceProperties): Promise<__esri.LocatorSearchSource>;
|
|
1400
|
+
declare function importWidgetsSearchSearchResultRenderer(): Promise<typeof __esri.SearchResultRenderer>;
|
|
1401
|
+
declare function newWidgetsSearchSearchResultRenderer(properties: __esri.SearchResultRendererProperties): Promise<__esri.SearchResultRenderer>;
|
|
1402
|
+
declare function importWidgetsSearchSearchSource(): Promise<typeof __esri.SearchSource>;
|
|
1403
|
+
declare function newWidgetsSearchSearchSource(properties: __esri.SearchSourceProperties): Promise<__esri.SearchSource>;
|
|
1404
|
+
declare function importWidgetsSearchSearchViewModel(): Promise<typeof __esri.SearchViewModel>;
|
|
1405
|
+
declare function newWidgetsSearchSearchViewModel(properties: __esri.SearchViewModelProperties): Promise<__esri.SearchViewModel>;
|
|
1406
|
+
declare function importWidgetsShadowCast(): Promise<typeof __esri.ShadowCast>;
|
|
1407
|
+
declare function newWidgetsShadowCast(properties: __esri.ShadowCastProperties): Promise<__esri.ShadowCast>;
|
|
1408
|
+
declare function importWidgetsShadowCastShadowCastViewModel(): Promise<typeof __esri.ShadowCastViewModel>;
|
|
1409
|
+
declare function newWidgetsShadowCastShadowCastViewModel(properties: __esri.ShadowCastViewModelProperties): Promise<__esri.ShadowCastViewModel>;
|
|
1410
|
+
declare function importWidgetsSketch(): Promise<typeof __esri.Sketch>;
|
|
1411
|
+
declare function newWidgetsSketch(properties: __esri.SketchProperties): Promise<__esri.Sketch>;
|
|
1412
|
+
declare function importWidgetsSketchSketchViewModel(): Promise<typeof __esri.SketchViewModel>;
|
|
1413
|
+
declare function newWidgetsSketchSketchViewModel(properties: __esri.SketchViewModelProperties): Promise<__esri.SketchViewModel>;
|
|
1414
|
+
declare function importWidgetsSlice(): Promise<typeof __esri.Slice>;
|
|
1415
|
+
declare function newWidgetsSlice(properties: __esri.SliceProperties): Promise<__esri.Slice>;
|
|
1416
|
+
declare function importWidgetsSliceSliceViewModel(): Promise<typeof __esri.SliceViewModel>;
|
|
1417
|
+
declare function newWidgetsSliceSliceViewModel(properties: __esri.SliceViewModelProperties): Promise<__esri.SliceViewModel>;
|
|
1418
|
+
declare function importWidgetsSlider(): Promise<typeof __esri.Slider>;
|
|
1419
|
+
declare function newWidgetsSlider(properties: __esri.SliderProperties): Promise<__esri.Slider>;
|
|
1420
|
+
declare function importWidgetsSliderSliderViewModel(): Promise<typeof __esri.SliderViewModel>;
|
|
1421
|
+
declare function newWidgetsSliderSliderViewModel(properties: __esri.SliderViewModelProperties): Promise<__esri.SliderViewModel>;
|
|
1422
|
+
declare function importWidgetsSmartMappingBinaryColorSizeSlider(): Promise<typeof __esri.BinaryColorSizeSlider>;
|
|
1423
|
+
declare function newWidgetsSmartMappingBinaryColorSizeSlider(properties: __esri.BinaryColorSizeSliderProperties): Promise<__esri.BinaryColorSizeSlider>;
|
|
1424
|
+
declare function importWidgetsSmartMappingBinaryColorSizeSliderBinaryColorSizeSliderViewModel(): Promise<typeof __esri.BinaryColorSizeSliderViewModel>;
|
|
1425
|
+
declare function newWidgetsSmartMappingBinaryColorSizeSliderBinaryColorSizeSliderViewModel(properties: __esri.BinaryColorSizeSliderViewModelProperties): Promise<__esri.BinaryColorSizeSliderViewModel>;
|
|
1426
|
+
declare function importWidgetsSmartMappingClassedColorSlider(): Promise<typeof __esri.ClassedColorSlider>;
|
|
1427
|
+
declare function newWidgetsSmartMappingClassedColorSlider(properties: __esri.ClassedColorSliderProperties): Promise<__esri.ClassedColorSlider>;
|
|
1428
|
+
declare function importWidgetsSmartMappingClassedColorSliderClassedColorSliderViewModel(): Promise<typeof __esri.ClassedColorSliderViewModel>;
|
|
1429
|
+
declare function newWidgetsSmartMappingClassedColorSliderClassedColorSliderViewModel(properties: __esri.ClassedColorSliderViewModelProperties): Promise<__esri.ClassedColorSliderViewModel>;
|
|
1430
|
+
declare function importWidgetsSmartMappingClassedSizeSlider(): Promise<typeof __esri.ClassedSizeSlider>;
|
|
1431
|
+
declare function newWidgetsSmartMappingClassedSizeSlider(properties: __esri.ClassedSizeSliderProperties): Promise<__esri.ClassedSizeSlider>;
|
|
1432
|
+
declare function importWidgetsSmartMappingClassedSizeSliderClassedSizeSliderViewModel(): Promise<typeof __esri.ClassedSizeSliderViewModel>;
|
|
1433
|
+
declare function newWidgetsSmartMappingClassedSizeSliderClassedSizeSliderViewModel(properties: __esri.ClassedSizeSliderViewModelProperties): Promise<__esri.ClassedSizeSliderViewModel>;
|
|
1434
|
+
declare function importWidgetsSmartMappingColorSizeSlider(): Promise<typeof __esri.ColorSizeSlider>;
|
|
1435
|
+
declare function newWidgetsSmartMappingColorSizeSlider(properties: __esri.ColorSizeSliderProperties): Promise<__esri.ColorSizeSlider>;
|
|
1436
|
+
declare function importWidgetsSmartMappingColorSizeSliderColorSizeSliderViewModel(): Promise<typeof __esri.ColorSizeSliderViewModel>;
|
|
1437
|
+
declare function newWidgetsSmartMappingColorSizeSliderColorSizeSliderViewModel(properties: __esri.ColorSizeSliderViewModelProperties): Promise<__esri.ColorSizeSliderViewModel>;
|
|
1438
|
+
declare function importWidgetsSmartMappingColorSlider(): Promise<typeof __esri.ColorSlider>;
|
|
1439
|
+
declare function newWidgetsSmartMappingColorSlider(properties: __esri.ColorSliderProperties): Promise<__esri.ColorSlider>;
|
|
1440
|
+
declare function importWidgetsSmartMappingColorSliderColorSliderViewModel(): Promise<typeof __esri.ColorSliderViewModel>;
|
|
1441
|
+
declare function newWidgetsSmartMappingColorSliderColorSliderViewModel(properties: __esri.ColorSliderViewModelProperties): Promise<__esri.ColorSliderViewModel>;
|
|
1442
|
+
declare function importWidgetsSmartMappingHeatmapSlider(): Promise<typeof __esri.HeatmapSlider>;
|
|
1443
|
+
declare function newWidgetsSmartMappingHeatmapSlider(properties: __esri.HeatmapSliderProperties): Promise<__esri.HeatmapSlider>;
|
|
1444
|
+
declare function importWidgetsSmartMappingHeatmapSliderHeatmapSliderViewModel(): Promise<typeof __esri.HeatmapSliderViewModel>;
|
|
1445
|
+
declare function newWidgetsSmartMappingHeatmapSliderHeatmapSliderViewModel(properties: __esri.HeatmapSliderViewModelProperties): Promise<__esri.HeatmapSliderViewModel>;
|
|
1446
|
+
declare function importWidgetsSmartMappingOpacitySlider(): Promise<typeof __esri.OpacitySlider>;
|
|
1447
|
+
declare function newWidgetsSmartMappingOpacitySlider(properties: __esri.OpacitySliderProperties): Promise<__esri.OpacitySlider>;
|
|
1448
|
+
declare function importWidgetsSmartMappingOpacitySliderOpacitySliderViewModel(): Promise<typeof __esri.OpacitySliderViewModel>;
|
|
1449
|
+
declare function newWidgetsSmartMappingOpacitySliderOpacitySliderViewModel(properties: __esri.OpacitySliderViewModelProperties): Promise<__esri.OpacitySliderViewModel>;
|
|
1450
|
+
declare function importWidgetsSmartMappingSizeSlider(): Promise<typeof __esri.SizeSlider>;
|
|
1451
|
+
declare function newWidgetsSmartMappingSizeSlider(properties: __esri.SizeSliderProperties): Promise<__esri.SizeSlider>;
|
|
1452
|
+
declare function importWidgetsSmartMappingSizeSliderSizeSliderViewModel(): Promise<typeof __esri.SizeSliderViewModel>;
|
|
1453
|
+
declare function newWidgetsSmartMappingSizeSliderSizeSliderViewModel(properties: __esri.SizeSliderViewModelProperties): Promise<__esri.SizeSliderViewModel>;
|
|
1454
|
+
declare function importWidgetsSmartMappingSmartMappingPrimaryHandleSliderViewModel(): Promise<typeof __esri.SmartMappingPrimaryHandleSliderViewModel>;
|
|
1455
|
+
declare function newWidgetsSmartMappingSmartMappingPrimaryHandleSliderViewModel(properties: __esri.SmartMappingPrimaryHandleSliderViewModelProperties): Promise<__esri.SmartMappingPrimaryHandleSliderViewModel>;
|
|
1456
|
+
declare function importWidgetsSmartMappingSmartMappingSliderBase(): Promise<typeof __esri.SmartMappingSliderBase>;
|
|
1457
|
+
declare function newWidgetsSmartMappingSmartMappingSliderBase(properties: __esri.SmartMappingSliderBaseProperties): Promise<__esri.SmartMappingSliderBase>;
|
|
1458
|
+
declare function importWidgetsSmartMappingSmartMappingSliderViewModel(): Promise<typeof __esri.SmartMappingSliderViewModel>;
|
|
1459
|
+
declare function newWidgetsSmartMappingSmartMappingSliderViewModel(properties: __esri.SmartMappingSliderViewModelProperties): Promise<__esri.SmartMappingSliderViewModel>;
|
|
1460
|
+
declare function importWidgetsSupportSnappingControls(): Promise<typeof __esri.SnappingControls>;
|
|
1461
|
+
declare function newWidgetsSupportSnappingControls(properties: __esri.SnappingControlsProperties): Promise<__esri.SnappingControls>;
|
|
1462
|
+
declare function importWidgetsSupportGridControls(): Promise<typeof __esri.GridControls>;
|
|
1463
|
+
declare function newWidgetsSupportGridControls(properties: __esri.GridControlsProperties): Promise<__esri.GridControls>;
|
|
1464
|
+
declare function importWidgetsSupportSnappingControlsSnappingControlsViewModel(): Promise<typeof __esri.SnappingControlsViewModel>;
|
|
1465
|
+
declare function newWidgetsSupportSnappingControlsSnappingControlsViewModel(properties: __esri.SnappingControlsViewModelProperties): Promise<__esri.SnappingControlsViewModel>;
|
|
1466
|
+
declare function importWidgetsSupportGridControlsGridControlsViewModel(): Promise<typeof __esri.GridControlsViewModel>;
|
|
1467
|
+
declare function newWidgetsSupportGridControlsGridControlsViewModel(properties: __esri.GridControlsViewModelProperties): Promise<__esri.GridControlsViewModel>;
|
|
1468
|
+
declare function importWidgetsSwipe(): Promise<typeof __esri.Swipe>;
|
|
1469
|
+
declare function newWidgetsSwipe(properties: __esri.SwipeProperties): Promise<__esri.Swipe>;
|
|
1470
|
+
declare function importWidgetsSwipeSwipeViewModel(): Promise<typeof __esri.SwipeViewModel>;
|
|
1471
|
+
declare function newWidgetsSwipeSwipeViewModel(properties: __esri.SwipeViewModelProperties): Promise<__esri.SwipeViewModel>;
|
|
1472
|
+
declare function importWidgetsTableList(): Promise<typeof __esri.TableList>;
|
|
1473
|
+
declare function newWidgetsTableList(properties: __esri.TableListProperties): Promise<__esri.TableList>;
|
|
1474
|
+
declare function importWidgetsTableListListItem(): Promise<typeof __esri.TableListListItem>;
|
|
1475
|
+
declare function newWidgetsTableListListItem(): Promise<__esri.TableListListItem>;
|
|
1476
|
+
declare function importWidgetsTableListListItemPanel(): Promise<typeof __esri.TableListListItemPanel>;
|
|
1477
|
+
declare function newWidgetsTableListListItemPanel(properties: __esri.TableListListItemPanelProperties): Promise<__esri.TableListListItemPanel>;
|
|
1478
|
+
declare function importWidgetsTableListTableListViewModel(): Promise<typeof __esri.TableListViewModel>;
|
|
1479
|
+
declare function newWidgetsTableListTableListViewModel(properties: __esri.TableListViewModelProperties): Promise<__esri.TableListViewModel>;
|
|
1480
|
+
declare function importWidgetsTimeSlider(): Promise<typeof __esri.widgetsTimeSlider>;
|
|
1481
|
+
declare function newWidgetsTimeSlider(properties: __esri.widgetsTimeSliderProperties): Promise<__esri.widgetsTimeSlider>;
|
|
1482
|
+
declare function importWidgetsTimeSliderTimeSliderViewModel(): Promise<typeof __esri.TimeSliderViewModel>;
|
|
1483
|
+
declare function newWidgetsTimeSliderTimeSliderViewModel(properties: __esri.TimeSliderViewModelProperties): Promise<__esri.TimeSliderViewModel>;
|
|
1484
|
+
declare function importWidgetsTimeZoneLabel(): Promise<typeof __esri.TimeZoneLabel>;
|
|
1485
|
+
declare function newWidgetsTimeZoneLabel(properties: __esri.TimeZoneLabelProperties): Promise<__esri.TimeZoneLabel>;
|
|
1486
|
+
declare function importWidgetsTrack(): Promise<typeof __esri.Track>;
|
|
1487
|
+
declare function newWidgetsTrack(properties: __esri.TrackProperties): Promise<__esri.Track>;
|
|
1488
|
+
declare function importWidgetsTrackTrackViewModel(): Promise<typeof __esri.TrackViewModel>;
|
|
1489
|
+
declare function newWidgetsTrackTrackViewModel(properties: __esri.TrackViewModelProperties): Promise<__esri.TrackViewModel>;
|
|
1490
|
+
declare function importWidgetsUtilityNetworkAssociations(): Promise<typeof __esri.UtilityNetworkAssociations>;
|
|
1491
|
+
declare function newWidgetsUtilityNetworkAssociations(properties: __esri.UtilityNetworkAssociationsProperties): Promise<__esri.UtilityNetworkAssociations>;
|
|
1492
|
+
declare function importWidgetsUtilityNetworkAssociationsUtilityNetworkAssociationsViewModel(): Promise<typeof __esri.UtilityNetworkAssociationsViewModel>;
|
|
1493
|
+
declare function newWidgetsUtilityNetworkAssociationsUtilityNetworkAssociationsViewModel(properties: __esri.UtilityNetworkAssociationsViewModelProperties): Promise<__esri.UtilityNetworkAssociationsViewModel>;
|
|
1494
|
+
declare function importWidgetsUtilityNetworkTrace(): Promise<typeof __esri.UtilityNetworkTrace>;
|
|
1495
|
+
declare function newWidgetsUtilityNetworkTrace(properties: __esri.UtilityNetworkTraceProperties): Promise<__esri.UtilityNetworkTrace>;
|
|
1496
|
+
declare function importWidgetsUtilityNetworkTraceUtilityNetworkTraceViewModel(): Promise<typeof __esri.UtilityNetworkTraceViewModel>;
|
|
1497
|
+
declare function newWidgetsUtilityNetworkTraceUtilityNetworkTraceViewModel(properties: __esri.UtilityNetworkTraceViewModelProperties): Promise<__esri.UtilityNetworkTraceViewModel>;
|
|
1498
|
+
declare function importWidgetsUtilityNetworkValidateTopology(): Promise<typeof __esri.UtilityNetworkValidateTopology>;
|
|
1499
|
+
declare function newWidgetsUtilityNetworkValidateTopology(properties: __esri.UtilityNetworkValidateTopologyProperties): Promise<__esri.UtilityNetworkValidateTopology>;
|
|
1500
|
+
declare function importWidgetsUtilityNetworkValidateTopologyUtilityNetworkValidateTopologyViewModel(): Promise<typeof __esri.UtilityNetworkValidateTopologyViewModel>;
|
|
1501
|
+
declare function newWidgetsUtilityNetworkValidateTopologyUtilityNetworkValidateTopologyViewModel(properties: any): Promise<__esri.UtilityNetworkValidateTopologyViewModel>;
|
|
1502
|
+
declare function importWidgetsValuePicker(): Promise<typeof __esri.ValuePicker>;
|
|
1503
|
+
declare function newWidgetsValuePicker(properties: __esri.ValuePickerProperties): Promise<__esri.ValuePicker>;
|
|
1504
|
+
declare function importWidgetsValuePickerValuePickerCollection(): Promise<typeof __esri.ValuePickerCollection>;
|
|
1505
|
+
declare function newWidgetsValuePickerValuePickerCollection(properties: any): Promise<__esri.ValuePickerCollection>;
|
|
1506
|
+
declare function importWidgetsValuePickerValuePickerCombobox(): Promise<typeof __esri.ValuePickerCombobox>;
|
|
1507
|
+
declare function newWidgetsValuePickerValuePickerCombobox(properties: any): Promise<__esri.ValuePickerCombobox>;
|
|
1508
|
+
declare function importWidgetsValuePickerValuePickerLabel(): Promise<typeof __esri.ValuePickerLabel>;
|
|
1509
|
+
declare function newWidgetsValuePickerValuePickerLabel(properties: any): Promise<__esri.ValuePickerLabel>;
|
|
1510
|
+
declare function importWidgetsValuePickerValuePickerSlider(): Promise<typeof __esri.ValuePickerSlider>;
|
|
1511
|
+
declare function newWidgetsValuePickerValuePickerSlider(properties: any): Promise<__esri.ValuePickerSlider>;
|
|
1512
|
+
declare function importWidgetsVersionManagementVersionManagementViewModel(): Promise<typeof __esri.VersionManagementViewModel>;
|
|
1513
|
+
declare function newWidgetsVersionManagementVersionManagementViewModel(properties: __esri.VersionManagementViewModelProperties): Promise<__esri.VersionManagementViewModel>;
|
|
1514
|
+
declare function importWidgetsVideoPlayer(): Promise<typeof __esri.VideoPlayer>;
|
|
1515
|
+
declare function newWidgetsVideoPlayer(properties: __esri.VideoPlayerProperties): Promise<__esri.VideoPlayer>;
|
|
1516
|
+
declare function importWidgetsVideoPlayerVideoPlayerViewModel(): Promise<typeof __esri.VideoPlayerViewModel>;
|
|
1517
|
+
declare function newWidgetsVideoPlayerVideoPlayerViewModel(properties: __esri.VideoPlayerViewModelProperties): Promise<__esri.VideoPlayerViewModel>;
|
|
1518
|
+
declare function importWidgetsWeather(): Promise<typeof __esri.Weather>;
|
|
1519
|
+
declare function newWidgetsWeather(properties: __esri.WeatherProperties): Promise<__esri.Weather>;
|
|
1520
|
+
declare function importWidgetsWeatherWeatherViewModel(): Promise<typeof __esri.WeatherViewModel>;
|
|
1521
|
+
declare function newWidgetsWeatherWeatherViewModel(properties: __esri.WeatherViewModelProperties): Promise<__esri.WeatherViewModel>;
|
|
1522
|
+
declare function importWidgetsWidget(): Promise<typeof __esri.Widget>;
|
|
1523
|
+
declare function newWidgetsWidget(properties: __esri.WidgetProperties): Promise<__esri.Widget>;
|
|
1524
|
+
declare function importWidgetsZoom(): Promise<typeof __esri.Zoom>;
|
|
1525
|
+
declare function newWidgetsZoom(properties: __esri.ZoomProperties): Promise<__esri.Zoom>;
|
|
1526
|
+
declare function importWidgetsZoomZoomViewModel(): Promise<typeof __esri.ZoomViewModel>;
|
|
1527
|
+
declare function newWidgetsZoomZoomViewModel(properties: __esri.ZoomViewModelProperties): Promise<__esri.ZoomViewModel>;
|
|
1528
|
+
declare function importArcade(): Promise<typeof __esri.arcade>;
|
|
1529
|
+
declare function importConfig(): Promise<typeof __esri.config>;
|
|
1530
|
+
declare function importCoreAccessorSupportDecorators(): Promise<typeof __esri.decorators>;
|
|
1531
|
+
declare function importCoreLang(): Promise<typeof __esri.lang>;
|
|
1532
|
+
declare function importCorePromiseUtils(): Promise<typeof __esri.promiseUtils>;
|
|
1533
|
+
declare function importCoreReactiveUtils(): Promise<typeof __esri.reactiveUtils>;
|
|
1534
|
+
declare function importCoreScheduling(): Promise<typeof __esri.scheduling>;
|
|
1535
|
+
declare function importCoreSql(): Promise<typeof __esri.sql>;
|
|
1536
|
+
declare function importCoreSqlWhereClause(): Promise<typeof __esri.WhereClause>;
|
|
1537
|
+
declare function importCoreUrlUtils(): Promise<typeof __esri.urlUtils>;
|
|
1538
|
+
declare function importCoreWorkers(): Promise<typeof __esri.workers>;
|
|
1539
|
+
declare function importFormElementsInputsAttachmentsSupportInputs(): Promise<typeof __esri.inputs>;
|
|
1540
|
+
declare function importFormElementsSupportInputs(): Promise<typeof __esri.supportInputs>;
|
|
1541
|
+
declare function importFormSupportElements(): Promise<typeof __esri.elements>;
|
|
1542
|
+
declare function importGeometry(): Promise<typeof __esri.geometry>;
|
|
1543
|
+
declare function importGeometryCoordinateFormatter(): Promise<typeof __esri.coordinateFormatter>;
|
|
1544
|
+
declare function importGeometryGeometryEngine(): Promise<typeof __esri.geometryEngine>;
|
|
1545
|
+
declare function importGeometryGeometryEngineAsync(): Promise<typeof __esri.geometryEngineAsync>;
|
|
1546
|
+
declare function importGeometryProjection(): Promise<typeof __esri.projection>;
|
|
1547
|
+
declare function importGeometryOperatorsCentroidOperator(): Promise<typeof __esri.centroidOperator>;
|
|
1548
|
+
declare function importGeometryOperatorsClipOperator(): Promise<typeof __esri.clipOperator>;
|
|
1549
|
+
declare function importGeometryOperatorsCutOperator(): Promise<typeof __esri.cutOperator>;
|
|
1550
|
+
declare function importGeometryOperatorsContainsOperator(): Promise<typeof __esri.containsOperator>;
|
|
1551
|
+
declare function importGeometryOperatorsCrossesOperator(): Promise<typeof __esri.crossesOperator>;
|
|
1552
|
+
declare function importGeometryOperatorsDensifyOperator(): Promise<typeof __esri.densifyOperator>;
|
|
1553
|
+
declare function importGeometryOperatorsDifferenceOperator(): Promise<typeof __esri.differenceOperator>;
|
|
1554
|
+
declare function importGeometryOperatorsDistanceOperator(): Promise<typeof __esri.distanceOperator>;
|
|
1555
|
+
declare function importGeometryOperatorsDisjointOperator(): Promise<typeof __esri.disjointOperator>;
|
|
1556
|
+
declare function importGeometryOperatorsEqualsOperator(): Promise<typeof __esri.equalsOperator>;
|
|
1557
|
+
declare function importGeometryOperatorsGeodesicBufferOperator(): Promise<typeof __esri.geodesicBufferOperator>;
|
|
1558
|
+
declare function importGeometryOperatorsGeodeticDensifyOperator(): Promise<typeof __esri.geodeticDensifyOperator>;
|
|
1559
|
+
declare function importGeometryOperatorsGeodeticDistanceOperator(): Promise<typeof __esri.geodeticDistanceOperator>;
|
|
1560
|
+
declare function importGeometryOperatorsGeneralizeOperator(): Promise<typeof __esri.generalizeOperator>;
|
|
1561
|
+
declare function importGeometryOperatorsIntersectionOperator(): Promise<typeof __esri.intersectionOperator>;
|
|
1562
|
+
declare function importGeometryOperatorsIntersectsOperator(): Promise<typeof __esri.intersectsOperator>;
|
|
1563
|
+
declare function importGeometryOperatorsOverlapsOperator(): Promise<typeof __esri.overlapsOperator>;
|
|
1564
|
+
declare function importGeometryOperatorsProximityOperator(): Promise<typeof __esri.proximityOperator>;
|
|
1565
|
+
declare function importGeometryOperatorsRelateOperator(): Promise<typeof __esri.relateOperator>;
|
|
1566
|
+
declare function importGeometryOperatorsSimplifyOperator(): Promise<typeof __esri.simplifyOperator>;
|
|
1567
|
+
declare function importGeometryOperatorsTouchesOperator(): Promise<typeof __esri.touchesOperator>;
|
|
1568
|
+
declare function importGeometryOperatorsUnionOperator(): Promise<typeof __esri.unionOperator>;
|
|
1569
|
+
declare function importGeometryOperatorsWithinOperator(): Promise<typeof __esri.withinOperator>;
|
|
1570
|
+
declare function importGeometrySupportGeodesicUtils(): Promise<typeof __esri.geodesicUtils>;
|
|
1571
|
+
declare function importGeometrySupportJsonUtils(): Promise<typeof __esri.jsonUtils>;
|
|
1572
|
+
declare function importGeometrySupportMeshUtils(): Promise<typeof __esri.meshUtils>;
|
|
1573
|
+
declare function importGeometrySupportNormalizeUtils(): Promise<typeof __esri.normalizeUtils>;
|
|
1574
|
+
declare function importGeometrySupportWebMercatorUtils(): Promise<typeof __esri.webMercatorUtils>;
|
|
1575
|
+
declare function importIntl(): Promise<typeof __esri.intl>;
|
|
1576
|
+
declare function importKernel(): Promise<typeof __esri.kernel>;
|
|
1577
|
+
declare function importLayersCatalogCatalogUtils(): Promise<typeof __esri.catalogUtils>;
|
|
1578
|
+
declare function importLayersOgcWfsUtils(): Promise<typeof __esri.wfsUtils>;
|
|
1579
|
+
declare function importLayersSupportArcadeUtils(): Promise<typeof __esri.arcadeUtils>;
|
|
1580
|
+
declare function importLayersSupportFieldUtils(): Promise<typeof __esri.fieldUtils>;
|
|
1581
|
+
declare function importLayersSupportRasterFunctionConstants(): Promise<typeof __esri.rasterFunctionConstants>;
|
|
1582
|
+
declare function importLayersSupportRasterFunctionUtils(): Promise<typeof __esri.rasterFunctionUtils>;
|
|
1583
|
+
declare function importLayersSupportStreamConnection(): Promise<typeof __esri.StreamConnection>;
|
|
1584
|
+
declare function importLayersVoxelVoxelVariable(): Promise<typeof __esri.VoxelVariable>;
|
|
1585
|
+
declare function importLayersVoxelVoxelVolume(): Promise<typeof __esri.VoxelVolume>;
|
|
1586
|
+
declare function importPointCloudRenderers(): Promise<typeof __esri.pointCloudRenderers>;
|
|
1587
|
+
declare function importPopupContent(): Promise<typeof __esri.content>;
|
|
1588
|
+
declare function importPopupSupportUtilityNetworkAssociationType(): Promise<typeof __esri.UtilityNetworkAssociationType>;
|
|
1589
|
+
declare function importRasterRenderers(): Promise<typeof __esri.rasterRenderers>;
|
|
1590
|
+
declare function importRenderers(): Promise<typeof __esri.renderers>;
|
|
1591
|
+
declare function importRenderersSupportJsonUtils(): Promise<typeof __esri.supportJsonUtils>;
|
|
1592
|
+
declare function importRenderersSupportUtils(): Promise<typeof __esri.utils>;
|
|
1593
|
+
declare function importRequest(): Promise<typeof __esri.request>;
|
|
1594
|
+
declare function importRestClosestFacility(): Promise<typeof __esri.closestFacility>;
|
|
1595
|
+
declare function importRestFeatureServiceUtils(): Promise<typeof __esri.featureServiceUtils>;
|
|
1596
|
+
declare function importRestFind(): Promise<typeof __esri.find>;
|
|
1597
|
+
declare function importRestGeometryService(): Promise<typeof __esri.geometryService>;
|
|
1598
|
+
declare function importRestGeoprocessor(): Promise<typeof __esri.geoprocessor>;
|
|
1599
|
+
declare function importRestGeoprocessorGPOptions(): Promise<typeof __esri.GPOptions>;
|
|
1600
|
+
declare function importRestIdentify(): Promise<typeof __esri.identify>;
|
|
1601
|
+
declare function importRestImageService(): Promise<typeof __esri.imageService>;
|
|
1602
|
+
declare function importRestKnowledgeGraphService(): Promise<typeof __esri.knowledgeGraphService>;
|
|
1603
|
+
declare function importRestLocator(): Promise<typeof __esri.locator>;
|
|
1604
|
+
declare function importRestNetworksQueryAssociations(): Promise<typeof __esri.queryAssociations>;
|
|
1605
|
+
declare function importRestNetworksSupportValidateNetworkTopologyResult(): Promise<typeof __esri.ValidateNetworkTopologyResult>;
|
|
1606
|
+
declare function importRestNetworksSynthesizeAssociationGeometries(): Promise<typeof __esri.synthesizeAssociationGeometries>;
|
|
1607
|
+
declare function importRestNetworksTrace(): Promise<typeof __esri.trace>;
|
|
1608
|
+
declare function importRestNetworkService(): Promise<typeof __esri.networkService>;
|
|
1609
|
+
declare function importRestPlaces(): Promise<typeof __esri.places>;
|
|
1610
|
+
declare function importRestPrint(): Promise<typeof __esri.print>;
|
|
1611
|
+
declare function importRestQuery(): Promise<typeof __esri.query>;
|
|
1612
|
+
declare function importRestRoute(): Promise<typeof __esri.route>;
|
|
1613
|
+
declare function importRestServiceArea(): Promise<typeof __esri.serviceArea>;
|
|
1614
|
+
declare function importRestSymbolService(): Promise<typeof __esri.symbolService>;
|
|
1615
|
+
declare function importSmartMappingHeuristicsBinLevel(): Promise<typeof __esri.binLevel>;
|
|
1616
|
+
declare function importSmartMappingHeuristicsScaleRange(): Promise<typeof __esri.scaleRange>;
|
|
1617
|
+
declare function importSmartMappingHeuristicsSizeRange(): Promise<typeof __esri.sizeRange>;
|
|
1618
|
+
declare function importSmartMappingLabelsBins(): Promise<typeof __esri.bins>;
|
|
1619
|
+
declare function importSmartMappingLabelsClusters(): Promise<typeof __esri.clusters>;
|
|
1620
|
+
declare function importSmartMappingPopupClusters(): Promise<typeof __esri.popupClusters>;
|
|
1621
|
+
declare function importSmartMappingPopupTemplates(): Promise<typeof __esri.templates>;
|
|
1622
|
+
declare function importSmartMappingRasterRenderersClassBreaks(): Promise<typeof __esri.classBreaks>;
|
|
1623
|
+
declare function importSmartMappingRasterRenderersColormap(): Promise<typeof __esri.colormap>;
|
|
1624
|
+
declare function importSmartMappingRasterRenderersFlow(): Promise<typeof __esri.flow>;
|
|
1625
|
+
declare function importSmartMappingRasterRenderersRgb(): Promise<typeof __esri.rgb>;
|
|
1626
|
+
declare function importSmartMappingRasterRenderersShadedRelief(): Promise<typeof __esri.shadedRelief>;
|
|
1627
|
+
declare function importSmartMappingRasterRenderersStretch(): Promise<typeof __esri.stretch>;
|
|
1628
|
+
declare function importSmartMappingRasterRenderersUniqueValue(): Promise<typeof __esri.uniqueValue>;
|
|
1629
|
+
declare function importSmartMappingRasterRenderersVectorField(): Promise<typeof __esri.vectorField>;
|
|
1630
|
+
declare function importSmartMappingRasterSupportColorRamps(): Promise<typeof __esri.colorRamps>;
|
|
1631
|
+
declare function importSmartMappingRasterSupportUtils(): Promise<typeof __esri.supportUtils>;
|
|
1632
|
+
declare function importSmartMappingRenderersColor(): Promise<typeof __esri.color>;
|
|
1633
|
+
declare function importSmartMappingRenderersDotDensity(): Promise<typeof __esri.dotDensity>;
|
|
1634
|
+
declare function importSmartMappingRenderersHeatmap(): Promise<typeof __esri.heatmap>;
|
|
1635
|
+
declare function importSmartMappingRenderersLocation(): Promise<typeof __esri.location>;
|
|
1636
|
+
declare function importSmartMappingRenderersOpacity(): Promise<typeof __esri.opacity>;
|
|
1637
|
+
declare function importSmartMappingRenderersPieChart(): Promise<typeof __esri.pieChart>;
|
|
1638
|
+
declare function importSmartMappingRenderersPredominance(): Promise<typeof __esri.predominance>;
|
|
1639
|
+
declare function importSmartMappingRenderersRelationship(): Promise<typeof __esri.relationship>;
|
|
1640
|
+
declare function importSmartMappingRenderersSize(): Promise<typeof __esri.size>;
|
|
1641
|
+
declare function importSmartMappingRenderersType(): Promise<typeof __esri.type>;
|
|
1642
|
+
declare function importSmartMappingRenderersUnivariateColorSize(): Promise<typeof __esri.univariateColorSize>;
|
|
1643
|
+
declare function importSmartMappingStatisticsClassBreaks(): Promise<typeof __esri.statisticsClassBreaks>;
|
|
1644
|
+
declare function importSmartMappingStatisticsHeatmapStatistics(): Promise<typeof __esri.heatmapStatistics>;
|
|
1645
|
+
declare function importSmartMappingStatisticsHistogram(): Promise<typeof __esri.histogram>;
|
|
1646
|
+
declare function importSmartMappingStatisticsPredominantCategories(): Promise<typeof __esri.predominantCategories>;
|
|
1647
|
+
declare function importSmartMappingStatisticsSummaryStatistics(): Promise<typeof __esri.summaryStatistics>;
|
|
1648
|
+
declare function importSmartMappingStatisticsSummaryStatisticsForAge(): Promise<typeof __esri.summaryStatisticsForAge>;
|
|
1649
|
+
declare function importSmartMappingStatisticsSupportAgeUtils(): Promise<typeof __esri.ageUtils>;
|
|
1650
|
+
declare function importSmartMappingStatisticsSupportPredominanceUtils(): Promise<typeof __esri.predominanceUtils>;
|
|
1651
|
+
declare function importSmartMappingStatisticsUniqueValues(): Promise<typeof __esri.uniqueValues>;
|
|
1652
|
+
declare function importSmartMappingSymbologyColor(): Promise<typeof __esri.symbologyColor>;
|
|
1653
|
+
declare function importSmartMappingSymbologyDotDensity(): Promise<typeof __esri.symbologyDotDensity>;
|
|
1654
|
+
declare function importSmartMappingSymbologyFlow(): Promise<typeof __esri.symbologyFlow>;
|
|
1655
|
+
declare function importSmartMappingSymbologyHeatmap(): Promise<typeof __esri.symbologyHeatmap>;
|
|
1656
|
+
declare function importSmartMappingSymbologyLocation(): Promise<typeof __esri.symbologyLocation>;
|
|
1657
|
+
declare function importSmartMappingSymbologyPieChart(): Promise<typeof __esri.symbologyPieChart>;
|
|
1658
|
+
declare function importSmartMappingSymbologyPredominance(): Promise<typeof __esri.symbologyPredominance>;
|
|
1659
|
+
declare function importSmartMappingSymbologyRelationship(): Promise<typeof __esri.symbologyRelationship>;
|
|
1660
|
+
declare function importSmartMappingSymbologySize(): Promise<typeof __esri.symbologySize>;
|
|
1661
|
+
declare function importSmartMappingSymbologySupportColorRamps(): Promise<typeof __esri.supportColorRamps>;
|
|
1662
|
+
declare function importSmartMappingSymbologyType(): Promise<typeof __esri.symbologyType>;
|
|
1663
|
+
declare function importSupportPopupUtils(): Promise<typeof __esri.popupUtils>;
|
|
1664
|
+
declare function importSupportTimeUtils(): Promise<typeof __esri.timeUtils>;
|
|
1665
|
+
declare function importSymbols(): Promise<typeof __esri.symbols>;
|
|
1666
|
+
declare function importSymbolsSupportCimConversionUtils(): Promise<typeof __esri.cimConversionUtils>;
|
|
1667
|
+
declare function importSymbolsSupportCimSymbolUtils(): Promise<typeof __esri.cimSymbolUtils>;
|
|
1668
|
+
declare function importSymbolsSupportJsonUtils(): Promise<typeof __esri.symbolsSupportJsonUtils>;
|
|
1669
|
+
declare function importSymbolsSupportSymbolUtils(): Promise<typeof __esri.symbolUtils>;
|
|
1670
|
+
declare function importTablesSupportElements(): Promise<typeof __esri.supportElements>;
|
|
1671
|
+
declare function importVersionManagementUtils(): Promise<typeof __esri.versionManagementUtils>;
|
|
1672
|
+
declare function importVersionManagementVersionAdaptersUtils(): Promise<typeof __esri.versionAdaptersUtils>;
|
|
1673
|
+
declare function importViews3dExternalRenderers(): Promise<typeof __esri.externalRenderers>;
|
|
1674
|
+
declare function importViews3dWebglManagedFBO(): Promise<typeof __esri.ManagedFBO>;
|
|
1675
|
+
declare function importViews3dWebglRenderCamera(): Promise<typeof __esri.RenderCamera>;
|
|
1676
|
+
declare function importViews3dWebgl(): Promise<typeof __esri.webgl>;
|
|
1677
|
+
declare function importViews3dSupportLayerPerformanceInfo(): Promise<typeof __esri.LayerPerformanceInfo>;
|
|
1678
|
+
declare function importViews3dSupportSceneViewPerformanceInfo(): Promise<typeof __esri.SceneViewPerformanceInfo>;
|
|
1679
|
+
declare function importViewsAnalysisLengthDimensionResult(): Promise<typeof __esri.LengthDimensionResult>;
|
|
1680
|
+
declare function importViewsSupportColorUtils(): Promise<typeof __esri.colorUtils>;
|
|
1681
|
+
declare function importWidgetsBatchAttributeFormBatchAttributeFormViewModel(): Promise<typeof __esri.BatchAttributeFormViewModel>;
|
|
1682
|
+
declare function importWidgetsSmartMappingSupportUtils(): Promise<typeof __esri.smartMappingSupportUtils>;
|
|
1683
|
+
declare function importWidgetsSupportWidget(): Promise<typeof __esri.widget>;
|
|
1684
|
+
declare function importApplicationsWebEditorSketchUtils(): Promise<typeof __esri.sketchUtils>;
|
|
1685
|
+
declare function importApplicationsSceneViewerSymbolUtils(): Promise<typeof __esri.SceneViewerSymbolUtils>;
|
|
1686
|
+
declare function importApplicationsSceneViewerSceneViewerUtils(): Promise<typeof __esri.sceneViewerUtils>;
|
|
1687
|
+
declare function importApplicationsSceneViewerLayerUtils(): Promise<typeof __esri.layerUtils>;
|
|
1688
|
+
declare function importApplicationsSceneViewerDevEnvironmentUtils(): Promise<typeof __esri.devEnvironmentUtils>;
|
|
1689
|
+
declare function importApplicationsSceneViewerColorUtils(): Promise<typeof __esri.SceneViewerColorUtils>;
|
|
1690
|
+
declare function importApplicationsMapViewerMediaUtils(): Promise<typeof __esri.mediaUtils>;
|
|
1691
|
+
declare function importApplicationsExcaliburVideoViewUtils(): Promise<typeof __esri.videoViewUtils>;
|
|
1692
|
+
declare function importApplicationsComponentsWebStyleSymbolUtils(): Promise<typeof __esri.webStyleSymbolUtils>;
|
|
1693
|
+
declare function importApplicationsComponentsSvgUtils(): Promise<typeof __esri.svgUtils>;
|
|
1694
|
+
declare function importApplicationsComponentsStyleUtils(): Promise<typeof __esri.styleUtils>;
|
|
1695
|
+
declare function importApplicationsComponentsPreviewSymbol2D(): Promise<typeof __esri.previewSymbol2D>;
|
|
1696
|
+
declare function importApplicationsComponentsLayerOriginUtils(): Promise<typeof __esri.layerOriginUtils>;
|
|
1697
|
+
declare function importApplicationsComponentsGfxUtils(): Promise<typeof __esri.gfxUtils>;
|
|
1698
|
+
declare function importApplicationsComponentsGetDefaultUnits(): Promise<typeof __esri.getDefaultUnits>;
|
|
1699
|
+
declare function importApplicationsComponentsDrawUtils(): Promise<typeof __esri.drawUtils>;
|
|
1700
|
+
declare function importApplicationsComponentsBasemapUtils(): Promise<typeof __esri.basemapUtils>;
|
|
1701
|
+
|
|
1702
|
+
export { importAnalysisAreaMeasurementAnalysis, importAnalysisDimensionAnalysis, importAnalysisDimensionSimpleStyle, importAnalysisDirectLineMeasurementAnalysis, importAnalysisLengthDimension, importAnalysisLineOfSightAnalysis, importAnalysisLineOfSightAnalysisObserver, importAnalysisLineOfSightAnalysisTarget, importAnalysisSliceAnalysis, importAnalysisSlicePlane, importAnalysisViewshed, importAnalysisViewshedAnalysis, importApplicationsComponentsBasemapUtils, importApplicationsComponentsDrawUtils, importApplicationsComponentsGetDefaultUnits, importApplicationsComponentsGfxUtils, importApplicationsComponentsLayerOriginUtils, importApplicationsComponentsPreviewSymbol2D, importApplicationsComponentsStyleUtils, importApplicationsComponentsSvgUtils, importApplicationsComponentsWebStyleSymbolUtils, importApplicationsExcaliburVideoViewUtils, importApplicationsMapViewerMediaUtils, importApplicationsSceneViewerColorUtils, importApplicationsSceneViewerDevEnvironmentUtils, importApplicationsSceneViewerLayerUtils, importApplicationsSceneViewerSceneViewerUtils, importApplicationsSceneViewerSymbolUtils, importApplicationsWebEditorSketchUtils, importArcade, importBasemap, importCamera, importCameraLayout, importColor, importConfig, importCoreAccessor, importCoreAccessorSupportDecorators, importCoreCollection, importCoreError, importCoreHandles, importCoreLang, importCorePromiseUtils, importCoreReactiveUtils, importCoreScheduling, importCoreSql, importCoreSqlWhereClause, importCoreUrlUtils, importCoreWorkers, importCoreWorkersConnection, importFormElementsAttachmentElement, importFormElementsElement, importFormElementsFieldElement, importFormElementsGroupElement, importFormElementsInputsAttachmentsAttachmentInput, importFormElementsInputsAttachmentsAudioInput, importFormElementsInputsAttachmentsDocumentInput, importFormElementsInputsAttachmentsImageInput, importFormElementsInputsAttachmentsSignatureInput, importFormElementsInputsAttachmentsSupportInputs, importFormElementsInputsAttachmentsVideoInput, importFormElementsInputsBarcodeScannerInput, importFormElementsInputsComboBoxInput, importFormElementsInputsDatePickerInput, importFormElementsInputsDateTimeOffsetPickerInput, importFormElementsInputsDateTimePickerInput, importFormElementsInputsRadioButtonsInput, importFormElementsInputsSwitchInput, importFormElementsInputsTextAreaInput, importFormElementsInputsTextBoxInput, importFormElementsInputsTimePickerInput, importFormElementsRelationshipElement, importFormElementsSupportInputs, importFormElementsTextElement, importFormExpressionInfo, importFormFormTemplate, importFormSupportElements, importGeometry, importGeometryCircle, importGeometryCoordinateFormatter, importGeometryExtent, importGeometryGeometry, importGeometryGeometryEngine, importGeometryGeometryEngineAsync, importGeometryHeightModelInfo, importGeometryMesh, importGeometryMultipoint, importGeometryOperatorsCentroidOperator, importGeometryOperatorsClipOperator, importGeometryOperatorsContainsOperator, importGeometryOperatorsCrossesOperator, importGeometryOperatorsCutOperator, importGeometryOperatorsDensifyOperator, importGeometryOperatorsDifferenceOperator, importGeometryOperatorsDisjointOperator, importGeometryOperatorsDistanceOperator, importGeometryOperatorsEqualsOperator, importGeometryOperatorsGeneralizeOperator, importGeometryOperatorsGeodesicBufferOperator, importGeometryOperatorsGeodeticDensifyOperator, importGeometryOperatorsGeodeticDistanceOperator, importGeometryOperatorsIntersectionOperator, importGeometryOperatorsIntersectsOperator, importGeometryOperatorsOverlapsOperator, importGeometryOperatorsProximityOperator, importGeometryOperatorsRelateOperator, importGeometryOperatorsSimplifyOperator, importGeometryOperatorsTouchesOperator, importGeometryOperatorsUnionOperator, importGeometryOperatorsWithinOperator, importGeometryPoint, importGeometryPolygon, importGeometryPolyline, importGeometryProjection, importGeometrySpatialReference, importGeometrySupportGeodesicUtils, importGeometrySupportGeographicTransformation, importGeometrySupportGeographicTransformationStep, importGeometrySupportJsonUtils, importGeometrySupportMeshComponent, importGeometrySupportMeshGeoreferencedVertexSpace, importGeometrySupportMeshLocalVertexSpace, importGeometrySupportMeshMaterial, importGeometrySupportMeshMaterialMetallicRoughness, importGeometrySupportMeshTexture, importGeometrySupportMeshTextureTransform, importGeometrySupportMeshTransform, importGeometrySupportMeshUtils, importGeometrySupportNormalizeUtils, importGeometrySupportWebMercatorUtils, importGraphic, importGround, importIdentityCredential, importIdentityIdentityManager, importIdentityOAuthInfo, importIdentityServerInfo, importIntl, importKernel, importLayersBaseDynamicLayer, importLayersBaseElevationLayer, importLayersBaseTileLayer, importLayersBingMapsLayer, importLayersBuildingSceneLayer, importLayersBuildingSublayersBuildingComponentSublayer, importLayersBuildingSublayersBuildingGroupSublayer, importLayersBuildingSublayersBuildingSublayer, importLayersCSVLayer, importLayersCatalogCatalogDynamicGroupLayer, importLayersCatalogCatalogFootprintLayer, importLayersCatalogCatalogUtils, importLayersCatalogLayer, importLayersDimensionLayer, importLayersElevationLayer, importLayersFeatureLayer, importLayersGeoJSONLayer, importLayersGeoRSSLayer, importLayersGraphicsLayer, importLayersGroupLayer, importLayersImageryLayer, importLayersImageryTileLayer, importLayersIntegratedMesh3DTilesLayer, importLayersIntegratedMeshLayer, importLayersKMLLayer, importLayersKnowledgeGraphKnowledgeGraphSublayer, importLayersKnowledgeGraphLayer, importLayersLayer, importLayersLineOfSightLayer, importLayersMapImageLayer, importLayersMapNotesLayer, importLayersMediaLayer, importLayersOGCFeatureLayer, importLayersOgcWfsUtils, importLayersOpenStreetMapLayer, importLayersOrientedImageryLayer, importLayersPointCloudFiltersPointCloudBitfieldFilter, importLayersPointCloudFiltersPointCloudFilter, importLayersPointCloudFiltersPointCloudReturnFilter, importLayersPointCloudFiltersPointCloudValueFilter, importLayersPointCloudLayer, importLayersRouteLayer, importLayersSceneLayer, importLayersStreamLayer, importLayersSubtypeGroupLayer, importLayersSupportAggregateField, importLayersSupportArcadeUtils, importLayersSupportBuildingFilter, importLayersSupportBuildingSummaryStatistics, importLayersSupportCodedValueDomain, importLayersSupportControlPointsGeoreference, importLayersSupportCornersGeoreference, importLayersSupportDimensionalDefinition, importLayersSupportDomain, importLayersSupportElevationSampler, importLayersSupportExpressionInfo, importLayersSupportExtentAndRotationGeoreference, importLayersSupportFacilityLayerInfo, importLayersSupportFeatureEffect, importLayersSupportFeatureFilter, importLayersSupportFeatureReductionBinning, importLayersSupportFeatureReductionCluster, importLayersSupportFeatureReductionSelection, importLayersSupportFeatureTemplate, importLayersSupportFeatureType, importLayersSupportField, importLayersSupportFieldUtils, importLayersSupportFieldsIndex, importLayersSupportGeometryFieldsInfo, importLayersSupportImageElement, importLayersSupportInheritedDomain, importLayersSupportKMLSublayer, importLayersSupportLOD, importLayersSupportLabelClass, importLayersSupportLayerFloorInfo, importLayersSupportLevelLayerInfo, importLayersSupportLocalMediaElementSource, importLayersSupportMapImage, importLayersSupportMosaicRule, importLayersSupportMultidimensionalSubset, importLayersSupportPixelBlock, importLayersSupportPublishingInfo, importLayersSupportRangeDomain, importLayersSupportRasterBandInfo, importLayersSupportRasterFunction, importLayersSupportRasterFunctionConstants, importLayersSupportRasterFunctionUtils, importLayersSupportRasterInfo, importLayersSupportRasterSensorInfo, importLayersSupportRelationship, importLayersSupportRouteStopSymbols, importLayersSupportRouteSymbols, importLayersSupportSceneFilter, importLayersSupportSceneModification, importLayersSupportSceneModifications, importLayersSupportSiteLayerInfo, importLayersSupportStreamConnection, importLayersSupportSublayer, importLayersSupportSubtype, importLayersSupportSubtypeSublayer, importLayersSupportTelemetryData, importLayersSupportTelemetryDisplay, importLayersSupportTileInfo, importLayersSupportTileMatrixSet, importLayersSupportTimeInfo, importLayersSupportVideoElement, importLayersSupportVideoTimeExtent, importLayersSupportWMSSublayer, importLayersSupportWMTSStyle, importLayersSupportWMTSSublayer, importLayersTileLayer, importLayersUnknownLayer, importLayersUnsupportedLayer, importLayersVectorTileLayer, importLayersVideoLayer, importLayersViewshedLayer, importLayersVoxelLayer, importLayersVoxelVoxelDynamicSection, importLayersVoxelVoxelSlice, importLayersVoxelVoxelTransferFunctionStyle, importLayersVoxelVoxelVariable, importLayersVoxelVoxelVariableStyle, importLayersVoxelVoxelVolume, importLayersVoxelVoxelVolumeStyle, importLayersWCSLayer, importLayersWFSLayer, importLayersWMSLayer, importLayersWMTSLayer, importLayersWebTileLayer, importMap, importNetworksNetwork, importNetworksSupportNamedTraceConfiguration, importNetworksSupportNetworkSystemLayers, importNetworksSupportTerminal, importNetworksSupportTerminalConfiguration, importNetworksSupportTopologyValidationJobInfo, importNetworksSupportTraceConfiguration, importNetworksSupportTraceJobInfo, importNetworksSupportUNTraceConfiguration, importNetworksUtilityNetwork, importPointCloudRenderers, importPopupContent, importPopupContentAttachmentsContent, importPopupContentBarChartMediaInfo, importPopupContentColumnChartMediaInfo, importPopupContentContent, importPopupContentCustomContent, importPopupContentExpressionContent, importPopupContentFieldsContent, importPopupContentImageMediaInfo, importPopupContentLineChartMediaInfo, importPopupContentMediaContent, importPopupContentPieChartMediaInfo, importPopupContentRelationshipContent, importPopupContentSupportChartMediaInfoValue, importPopupContentSupportChartMediaInfoValueSeries, importPopupContentSupportImageMediaInfoValue, importPopupContentTextContent, importPopupContentUtilityNetworkAssociationsContent, importPopupElementExpressionInfo, importPopupExpressionInfo, importPopupFieldInfo, importPopupLayerOptions, importPopupRelatedRecordsInfo, importPopupSupportFieldInfoFormat, importPopupSupportRelatedRecordsInfoFieldOrder, importPopupSupportUtilityNetworkAssociationType, importPopupTemplate, importPortalPortal, importPortalPortalFolder, importPortalPortalGroup, importPortalPortalItem, importPortalPortalItemResource, importPortalPortalQueryParams, importPortalPortalQueryResult, importPortalPortalRating, importPortalPortalUser, importRasterRenderers, importRenderers, importRenderersClassBreaksRenderer, importRenderersDictionaryRenderer, importRenderersDotDensityRenderer, importRenderersFlowRenderer, importRenderersHeatmapRenderer, importRenderersPieChartRenderer, importRenderersPointCloudClassBreaksRenderer, importRenderersPointCloudRGBRenderer, importRenderersPointCloudRenderer, importRenderersPointCloudStretchRenderer, importRenderersPointCloudUniqueValueRenderer, importRenderersRasterColormapRenderer, importRenderersRasterShadedReliefRenderer, importRenderersRasterStretchRenderer, importRenderersRenderer, importRenderersSimpleRenderer, importRenderersSupportAttributeColorInfo, importRenderersSupportAuthoringInfo, importRenderersSupportAuthoringInfoVisualVariable, importRenderersSupportClassBreakInfo, importRenderersSupportColormapInfo, importRenderersSupportHeatmapColorStop, importRenderersSupportJsonUtils, importRenderersSupportUniqueValue, importRenderersSupportUniqueValueClass, importRenderersSupportUniqueValueGroup, importRenderersSupportUniqueValueInfo, importRenderersSupportUtils, importRenderersUniqueValueRenderer, importRenderersVectorFieldRenderer, importRenderersVisualVariablesColorVariable, importRenderersVisualVariablesOpacityVariable, importRenderersVisualVariablesRotationVariable, importRenderersVisualVariablesSizeVariable, importRenderersVisualVariablesSupportColorSizeStop, importRenderersVisualVariablesSupportColorStop, importRenderersVisualVariablesSupportOpacityStop, importRenderersVisualVariablesSupportSizeStop, importRenderersVisualVariablesVisualVariable, importRequest, importRestClosestFacility, importRestFeatureServiceFeatureService, importRestFeatureServiceUtils, importRestFind, importRestGeometryService, importRestGeoprocessor, importRestGeoprocessorGPOptions, importRestIdentify, importRestImageService, importRestKnowledgeGraphDataModel, importRestKnowledgeGraphEntity, importRestKnowledgeGraphEntityType, importRestKnowledgeGraphFieldIndex, importRestKnowledgeGraphGraphApplyEdits, importRestKnowledgeGraphGraphApplyEditsResult, importRestKnowledgeGraphGraphNamedObject, importRestKnowledgeGraphGraphObject, importRestKnowledgeGraphGraphObjectType, importRestKnowledgeGraphGraphProperty, importRestKnowledgeGraphGraphQuery, importRestKnowledgeGraphGraphQueryResult, importRestKnowledgeGraphGraphQueryStreaming, importRestKnowledgeGraphGraphQueryStreamingResult, importRestKnowledgeGraphGraphSearch, importRestKnowledgeGraphGraphSearchStreaming, importRestKnowledgeGraphInputQuantizationParameters, importRestKnowledgeGraphKnowledgeGraph, importRestKnowledgeGraphOutputQuantizationParameters, importRestKnowledgeGraphPath, importRestKnowledgeGraphRelationship, importRestKnowledgeGraphRelationshipType, importRestKnowledgeGraphSearchIndex, importRestKnowledgeGraphService, importRestKnowledgeGraphServiceDefinition, importRestLocator, importRestNetworkService, importRestNetworksQueryAssociations, importRestNetworksSupportAggregatedGeometry, importRestNetworksSupportAssociation, importRestNetworksSupportAssociationGeometriesResult, importRestNetworksSupportFunctionResult, importRestNetworksSupportNetworkElement, importRestNetworksSupportQueryAssociationsParameters, importRestNetworksSupportQueryAssociationsResult, importRestNetworksSupportSynthesizeAssociationGeometriesParameters, importRestNetworksSupportTraceLocation, importRestNetworksSupportTraceParameters, importRestNetworksSupportTraceResult, importRestNetworksSupportValidateNetworkTopologyParameters, importRestNetworksSupportValidateNetworkTopologyResult, importRestNetworksSynthesizeAssociationGeometries, importRestNetworksTrace, importRestPlaces, importRestPrint, importRestQuery, importRestQuerySupportAttachmentInfo, importRestRoute, importRestServiceArea, importRestSupportAddressCandidate, importRestSupportAlgorithmicColorRamp, importRestSupportArealUnit, importRestSupportAreasAndLengthsParameters, importRestSupportAttachmentQuery, importRestSupportBufferParameters, importRestSupportCameraInfo, importRestSupportClosestFacilityParameters, importRestSupportClosestFacilitySolveResult, importRestSupportColorRamp, importRestSupportDataFile, importRestSupportDataLayer, importRestSupportDensifyParameters, importRestSupportDirectionLine, importRestSupportDirectionPoint, importRestSupportDirectionsEvent, importRestSupportDirectionsFeature, importRestSupportDirectionsFeatureSet, importRestSupportDistanceParameters, importRestSupportFeatureSet, importRestSupportFetchPlaceParameters, importRestSupportFindImagesParameters, importRestSupportFindImagesResult, importRestSupportFindParameters, importRestSupportFindResult, importRestSupportGPMessage, importRestSupportGeneralizeParameters, importRestSupportIdentifyParameters, importRestSupportIdentifyResult, importRestSupportImageAngleParameters, importRestSupportImageAngleResult, importRestSupportImageAreaParameters, importRestSupportImageAreaResult, importRestSupportImageBoundaryParameters, importRestSupportImageBoundaryResult, importRestSupportImageDistanceParameters, importRestSupportImageDistanceResult, importRestSupportImageGPSInfo, importRestSupportImageGPSInfoParameters, importRestSupportImageGPSInfoResult, importRestSupportImageHeightParameters, importRestSupportImageHeightResult, importRestSupportImageHistogramParameters, importRestSupportImageIdentifyParameters, importRestSupportImageIdentifyResult, importRestSupportImageInspectionInfo, importRestSupportImageParameters, importRestSupportImagePixelLocationParameters, importRestSupportImagePixelLocationResult, importRestSupportImagePointParameters, importRestSupportImagePointResult, importRestSupportImageSample, importRestSupportImageSampleParameters, importRestSupportImageSampleResult, importRestSupportImageToMapMultirayParameters, importRestSupportImageToMapParameters, importRestSupportImageUrlParameters, importRestSupportImageUrlResult, importRestSupportJobInfo, importRestSupportLegendLayer, importRestSupportLengthsParameters, importRestSupportLinearUnit, importRestSupportMapToImageParameters, importRestSupportMeasureAreaFromImageResult, importRestSupportMeasureFromImageParameters, importRestSupportMeasureLengthFromImageResult, importRestSupportMultipartColorRamp, importRestSupportNAMessage, importRestSupportNetworkFeatureSet, importRestSupportNetworkUrl, importRestSupportOffsetParameters, importRestSupportParameterValue, importRestSupportPlaceResult, importRestSupportPlacesParameters, importRestSupportPlacesQueryParameters, importRestSupportPlacesQueryResult, importRestSupportPointBarrier, importRestSupportPolygonBarrier, importRestSupportPolylineBarrier, importRestSupportPrintParameters, importRestSupportPrintTemplate, importRestSupportProjectParameters, importRestSupportQuery, importRestSupportRasterData, importRestSupportRelationParameters, importRestSupportRelationshipQuery, importRestSupportRouteInfo, importRestSupportRouteParameters, importRestSupportRouteResult, importRestSupportRouteSolveResult, importRestSupportServiceAreaParameters, importRestSupportServiceAreaSolveResult, importRestSupportStatisticDefinition, importRestSupportStop, importRestSupportTopFeaturesQuery, importRestSupportTopFilter, importRestSupportTravelMode, importRestSupportTrimExtendParameters, importRestSymbolService, importSmartMappingHeuristicsBinLevel, importSmartMappingHeuristicsScaleRange, importSmartMappingHeuristicsSizeRange, importSmartMappingLabelsBins, importSmartMappingLabelsClusters, importSmartMappingPopupClusters, importSmartMappingPopupTemplates, importSmartMappingRasterRenderersClassBreaks, importSmartMappingRasterRenderersColormap, importSmartMappingRasterRenderersFlow, importSmartMappingRasterRenderersRgb, importSmartMappingRasterRenderersShadedRelief, importSmartMappingRasterRenderersStretch, importSmartMappingRasterRenderersUniqueValue, importSmartMappingRasterRenderersVectorField, importSmartMappingRasterSupportColorRamps, importSmartMappingRasterSupportUtils, importSmartMappingRenderersColor, importSmartMappingRenderersDotDensity, importSmartMappingRenderersHeatmap, importSmartMappingRenderersLocation, importSmartMappingRenderersOpacity, importSmartMappingRenderersPieChart, importSmartMappingRenderersPredominance, importSmartMappingRenderersRelationship, importSmartMappingRenderersSize, importSmartMappingRenderersType, importSmartMappingRenderersUnivariateColorSize, importSmartMappingStatisticsClassBreaks, importSmartMappingStatisticsHeatmapStatistics, importSmartMappingStatisticsHistogram, importSmartMappingStatisticsPredominantCategories, importSmartMappingStatisticsSummaryStatistics, importSmartMappingStatisticsSummaryStatisticsForAge, importSmartMappingStatisticsSupportAgeUtils, importSmartMappingStatisticsSupportPredominanceUtils, importSmartMappingStatisticsUniqueValues, importSmartMappingSymbologyColor, importSmartMappingSymbologyDotDensity, importSmartMappingSymbologyFlow, importSmartMappingSymbologyHeatmap, importSmartMappingSymbologyLocation, importSmartMappingSymbologyPieChart, importSmartMappingSymbologyPredominance, importSmartMappingSymbologyRelationship, importSmartMappingSymbologySize, importSmartMappingSymbologySupportColorRamps, importSmartMappingSymbologyType, importSupportActionsActionBase, importSupportActionsActionButton, importSupportActionsActionToggle, importSupportBasemapStyle, importSupportMapFloorInfo, importSupportPopupUtils, importSupportTimeUtils, importSymbols, importSymbolsCIMSymbol, importSymbolsCalloutsCallout3D, importSymbolsCalloutsLineCallout3D, importSymbolsEdgesEdges3D, importSymbolsEdgesSketchEdges3D, importSymbolsEdgesSolidEdges3D, importSymbolsExtrudeSymbol3DLayer, importSymbolsFillSymbol, importSymbolsFillSymbol3DLayer, importSymbolsFont, importSymbolsIconSymbol3DLayer, importSymbolsLabelSymbol3D, importSymbolsLineStyleMarker3D, importSymbolsLineSymbol, importSymbolsLineSymbol3D, importSymbolsLineSymbol3DLayer, importSymbolsLineSymbolMarker, importSymbolsMarkerSymbol, importSymbolsMeshSymbol3D, importSymbolsObjectSymbol3DLayer, importSymbolsPathSymbol3DLayer, importSymbolsPatternsLineStylePattern3D, importSymbolsPatternsStylePattern3D, importSymbolsPictureFillSymbol, importSymbolsPictureMarkerSymbol, importSymbolsPointSymbol3D, importSymbolsPolygonSymbol3D, importSymbolsSimpleFillSymbol, importSymbolsSimpleLineSymbol, importSymbolsSimpleMarkerSymbol, importSymbolsSupportCimConversionUtils, importSymbolsSupportCimSymbolUtils, importSymbolsSupportJsonUtils, importSymbolsSupportStyleOrigin, importSymbolsSupportSymbol3DVerticalOffset, importSymbolsSupportSymbolUtils, importSymbolsSymbol, importSymbolsSymbol3D, importSymbolsSymbol3DLayer, importSymbolsTextSymbol, importSymbolsTextSymbol3DLayer, importSymbolsWaterSymbol3DLayer, importSymbolsWebStyleSymbol, importTablesAttributeTableTemplate, importTablesElementsAttributeTableAttachmentElement, importTablesElementsAttributeTableElement, importTablesElementsAttributeTableFieldElement, importTablesElementsAttributeTableGroupElement, importTablesElementsAttributeTableRelationshipElement, importTablesSupportElements, importTimeExtent, importTimeInterval, importTimeTimeExtent, importTimeTimeInterval, importVersionManagementUtils, importVersionManagementVersionAdaptersUtils, importVersionManagementVersionManagementService, importVersionManagementVersioningState, importViewpoint, importViews2dLayersBaseLayerView2D, importViews2dLayersBaseLayerViewGL2D, importViews2dViewState, importViews3dAnalysisAreaMeasurementAnalysisView3D, importViews3dAnalysisDirectLineMeasurementAnalysisView3D, importViews3dAnalysisLineOfSightAnalysisResult, importViews3dAnalysisLineOfSightAnalysisView3D, importViews3dAnalysisSliceAnalysisView3D, importViews3dAnalysisViewshedAnalysisView3D, importViews3dEnvironmentCloudyWeather, importViews3dEnvironmentFoggyWeather, importViews3dEnvironmentRainyWeather, importViews3dEnvironmentSnowyWeather, importViews3dEnvironmentSunLighting, importViews3dEnvironmentSunnyWeather, importViews3dEnvironmentVirtualLighting, importViews3dExternalRenderers, importViews3dSupportLayerPerformanceInfo, importViews3dSupportSceneViewPerformanceInfo, importViews3dWebgl, importViews3dWebglManagedFBO, importViews3dWebglRenderCamera, importViews3dWebglRenderNode, importViewsAnalysisDimensionAnalysisView, importViewsAnalysisLengthDimensionResult, importViewsBasemapView, importViewsDrawDraw, importViewsDrawDrawAction, importViewsDrawMultipointDrawAction, importViewsDrawPointDrawAction, importViewsDrawPolygonDrawAction, importViewsDrawPolylineDrawAction, importViewsDrawSegmentDrawAction, importViewsGroundView, importViewsInputGamepadGamepadInputDevice, importViewsInputGamepadGamepadSettings, importViewsInputInput, importViewsInteractiveSketchSketchLabelOptions, importViewsInteractiveSketchSketchTooltipOptions, importViewsInteractiveSketchSketchValueOptions, importViewsInteractiveSnappingFeatureSnappingLayerSource, importViewsInteractiveSnappingSnappingOptions, importViewsInteractiveTooltip, importViewsLayersBuildingComponentSublayerView, importViewsLayersBuildingSceneLayerView, importViewsLayersCatalogDynamicGroupLayerView, importViewsLayersCatalogFootprintLayerView, importViewsLayersCatalogLayerView, importViewsLayersDimensionLayerView, importViewsLayersFeatureLayerView, importViewsLayersImageryLayerView, importViewsLayersLayerView, importViewsLayersMediaLayerView, importViewsLayersOGCFeatureLayerView, importViewsLayersSceneLayerView, importViewsLayersStreamLayerView, importViewsLayersViewshedLayerView, importViewsMagnifier, importViewsMapView, importViewsNavigationGamepadGamepadSettings, importViewsNavigationNavigation, importViewsSceneView, importViewsSupportColorUtils, importViewsTheme, importViewsUiDefaultUI, importViewsUiUI, importViewsView, importViewsView2D, importViewsViewAnimation, importWebDocument2D, importWebMap, importWebScene, importWebdocApplicationPropertiesSearch, importWebdocApplicationPropertiesSearchLayer, importWebdocApplicationPropertiesSearchLayerField, importWebdocApplicationPropertiesSearchTable, importWebdocApplicationPropertiesSearchTableField, importWebdocApplicationPropertiesViewing, importWebdocGeotriggersInfo, importWebdocGeotriggersInfoDeviceLocationFeed, importWebdocGeotriggersInfoExpressionInfo, importWebdocGeotriggersInfoFeatureFenceParameters, importWebdocGeotriggersInfoFeatureFilter, importWebdocGeotriggersInfoFeatureLayerSource, importWebdocGeotriggersInfoFenceGeotrigger, importWebdocGeotriggersInfoGeotrigger, importWebdocGeotriggersInfoGeotriggerNotificationOptions, importWebdocIPSInfo, importWebdocIpsPositioningService, importWebdocWidgetsTimeSlider, importWebmapApplicationProperties, importWebmapBackgroundColorBackground, importWebmapBookmark, importWebmapInitialViewProperties, importWebsceneApplicationProperties, importWebsceneBackgroundBackground, importWebsceneBackgroundColorBackground, importWebsceneEnvironment, importWebsceneInitialViewProperties, importWebscenePresentation, importWebsceneSlide, importWebsceneSunLighting, importWebsceneVirtualLighting, importWidgetsAreaMeasurement2D, importWidgetsAreaMeasurement2DAreaMeasurement2DViewModel, importWidgetsAreaMeasurement3D, importWidgetsAreaMeasurement3DAreaMeasurement3DViewModel, importWidgetsAttachments, importWidgetsAttachmentsAttachmentsViewModel, importWidgetsAttribution, importWidgetsAttributionAttributionViewModel, importWidgetsBasemapGallery, importWidgetsBasemapGalleryBasemapGalleryViewModel, importWidgetsBasemapGallerySupportBasemapGalleryItem, importWidgetsBasemapGallerySupportLocalBasemapsSource, importWidgetsBasemapGallerySupportPortalBasemapsSource, importWidgetsBasemapLayerList, importWidgetsBasemapLayerListBasemapLayerListViewModel, importWidgetsBasemapToggle, importWidgetsBasemapToggleBasemapToggleViewModel, importWidgetsBatchAttributeForm, importWidgetsBatchAttributeFormBatchAttributeFormViewModel, importWidgetsBookmarks, importWidgetsBookmarksBookmarksViewModel, importWidgetsBuildingExplorer, importWidgetsBuildingExplorerBuildingExplorerViewModel, importWidgetsBuildingExplorerBuildingLevel, importWidgetsBuildingExplorerBuildingPhase, importWidgetsCatalogLayerList, importWidgetsCatalogLayerListCatalogLayerListViewModel, importWidgetsCompass, importWidgetsCompassCompassViewModel, importWidgetsCoordinateConversion, importWidgetsCoordinateConversionCoordinateConversionViewModel, importWidgetsCoordinateConversionSupportConversion, importWidgetsCoordinateConversionSupportFormat, importWidgetsDaylight, importWidgetsDaylightDaylightViewModel, importWidgetsDirectLineMeasurement3D, importWidgetsDirectLineMeasurement3DDirectLineMeasurement3DViewModel, importWidgetsDirectionalPad, importWidgetsDirectionalPadDirectionalPadViewModel, importWidgetsDirections, importWidgetsDirectionsDirectionsViewModel, importWidgetsDistanceMeasurement2D, importWidgetsDistanceMeasurement2DDistanceMeasurement2DViewModel, importWidgetsEditor, importWidgetsEditorCreateFeaturesWorkflow, importWidgetsEditorCreateFeaturesWorkflowData, importWidgetsEditorEditorViewModel, importWidgetsEditorEdits, importWidgetsEditorSupportEditorItem, importWidgetsEditorUpdateWorkflow, importWidgetsEditorUpdateWorkflowData, importWidgetsEditorWorkflow, importWidgetsElevationProfile, importWidgetsElevationProfileElevationProfileLine, importWidgetsElevationProfileElevationProfileLineGround, importWidgetsElevationProfileElevationProfileLineInput, importWidgetsElevationProfileElevationProfileLineQuery, importWidgetsElevationProfileElevationProfileLineView, importWidgetsElevationProfileElevationProfileViewModel, importWidgetsExpand, importWidgetsExpandExpandViewModel, importWidgetsFeature, importWidgetsFeatureFeatureViewModel, importWidgetsFeatureForm, importWidgetsFeatureFormFeatureFormViewModel, importWidgetsFeatureFormFieldInput, importWidgetsFeatureFormGroupInput, importWidgetsFeatureFormRelationshipInput, importWidgetsFeatureTable, importWidgetsFeatureTableActionColumn, importWidgetsFeatureTableAttachmentsColumn, importWidgetsFeatureTableFeatureTableViewModel, importWidgetsFeatureTableFieldColumn, importWidgetsFeatureTableGridColumn, importWidgetsFeatureTableGridGroupColumn, importWidgetsFeatureTableGridSupportButtonMenu, importWidgetsFeatureTableGridSupportButtonMenuItem, importWidgetsFeatureTableGridSupportButtonMenuViewModel, importWidgetsFeatureTableRelationshipColumn, importWidgetsFeatureTableSupportColumnTemplate, importWidgetsFeatureTableSupportColumnTemplateBase, importWidgetsFeatureTableSupportFieldColumnTemplate, importWidgetsFeatureTableSupportGroupColumnTemplate, importWidgetsFeatureTableSupportTableTemplate, importWidgetsFeatureTemplates, importWidgetsFeatureTemplatesFeatureTemplatesViewModel, importWidgetsFeatureTemplatesTemplateItem, importWidgetsFeatureTemplatesTemplateItemGroup, importWidgetsFeatures, importWidgetsFeaturesFeaturesViewModel, importWidgetsFloorFilter, importWidgetsFloorFilterFloorFilterViewModel, importWidgetsFullscreen, importWidgetsFullscreenFullscreenViewModel, importWidgetsHistogram, importWidgetsHistogramHistogramViewModel, importWidgetsHistogramRangeSlider, importWidgetsHistogramRangeSliderHistogramRangeSliderViewModel, importWidgetsHome, importWidgetsHomeHomeViewModel, importWidgetsLayerList, importWidgetsLayerListLayerListViewModel, importWidgetsLayerListListItem, importWidgetsLayerListListItemPanel, importWidgetsLegend, importWidgetsLegendLegendViewModel, importWidgetsLegendSupportActiveLayerInfo, importWidgetsLineOfSight, importWidgetsLineOfSightLineOfSightTarget, importWidgetsLineOfSightLineOfSightViewModel, importWidgetsLocate, importWidgetsLocateLocateViewModel, importWidgetsMeasurement, importWidgetsMeasurementMeasurementViewModel, importWidgetsNavigationToggle, importWidgetsNavigationToggleNavigationToggleViewModel, importWidgetsOrientedImageryViewer, importWidgetsOrientedImageryViewerOrientedImageryViewerViewModel, importWidgetsPopup, importWidgetsPopupPopupViewModel, importWidgetsPrint, importWidgetsPrintCustomTemplate, importWidgetsPrintPrintViewModel, importWidgetsPrintTemplateOptions, importWidgetsScaleBar, importWidgetsScaleBarScaleBarViewModel, importWidgetsScaleRangeSlider, importWidgetsScaleRangeSliderScaleRangeSliderViewModel, importWidgetsScaleRangeSliderScaleRanges, importWidgetsSearch, importWidgetsSearchLayerSearchSource, importWidgetsSearchLocatorSearchSource, importWidgetsSearchSearchResultRenderer, importWidgetsSearchSearchSource, importWidgetsSearchSearchViewModel, importWidgetsShadowCast, importWidgetsShadowCastShadowCastViewModel, importWidgetsSketch, importWidgetsSketchSketchViewModel, importWidgetsSlice, importWidgetsSliceSliceViewModel, importWidgetsSlider, importWidgetsSliderSliderViewModel, importWidgetsSmartMappingBinaryColorSizeSlider, importWidgetsSmartMappingBinaryColorSizeSliderBinaryColorSizeSliderViewModel, importWidgetsSmartMappingClassedColorSlider, importWidgetsSmartMappingClassedColorSliderClassedColorSliderViewModel, importWidgetsSmartMappingClassedSizeSlider, importWidgetsSmartMappingClassedSizeSliderClassedSizeSliderViewModel, importWidgetsSmartMappingColorSizeSlider, importWidgetsSmartMappingColorSizeSliderColorSizeSliderViewModel, importWidgetsSmartMappingColorSlider, importWidgetsSmartMappingColorSliderColorSliderViewModel, importWidgetsSmartMappingHeatmapSlider, importWidgetsSmartMappingHeatmapSliderHeatmapSliderViewModel, importWidgetsSmartMappingOpacitySlider, importWidgetsSmartMappingOpacitySliderOpacitySliderViewModel, importWidgetsSmartMappingSizeSlider, importWidgetsSmartMappingSizeSliderSizeSliderViewModel, importWidgetsSmartMappingSmartMappingPrimaryHandleSliderViewModel, importWidgetsSmartMappingSmartMappingSliderBase, importWidgetsSmartMappingSmartMappingSliderViewModel, importWidgetsSmartMappingSupportUtils, importWidgetsSupportGridControls, importWidgetsSupportGridControlsGridControlsViewModel, importWidgetsSupportSnappingControls, importWidgetsSupportSnappingControlsSnappingControlsViewModel, importWidgetsSupportWidget, importWidgetsSwipe, importWidgetsSwipeSwipeViewModel, importWidgetsTableList, importWidgetsTableListListItem, importWidgetsTableListListItemPanel, importWidgetsTableListTableListViewModel, importWidgetsTimeSlider, importWidgetsTimeSliderTimeSliderViewModel, importWidgetsTimeZoneLabel, importWidgetsTrack, importWidgetsTrackTrackViewModel, importWidgetsUtilityNetworkAssociations, importWidgetsUtilityNetworkAssociationsUtilityNetworkAssociationsViewModel, importWidgetsUtilityNetworkTrace, importWidgetsUtilityNetworkTraceUtilityNetworkTraceViewModel, importWidgetsUtilityNetworkValidateTopology, importWidgetsUtilityNetworkValidateTopologyUtilityNetworkValidateTopologyViewModel, importWidgetsValuePicker, importWidgetsValuePickerValuePickerCollection, importWidgetsValuePickerValuePickerCombobox, importWidgetsValuePickerValuePickerLabel, importWidgetsValuePickerValuePickerSlider, importWidgetsVersionManagementVersionManagementViewModel, importWidgetsVideoPlayer, importWidgetsVideoPlayerVideoPlayerViewModel, importWidgetsWeather, importWidgetsWeatherWeatherViewModel, importWidgetsWidget, importWidgetsZoom, importWidgetsZoomZoomViewModel, loadUndocumentedModule, newAnalysisAreaMeasurementAnalysis, newAnalysisDimensionAnalysis, newAnalysisDimensionSimpleStyle, newAnalysisDirectLineMeasurementAnalysis, newAnalysisLengthDimension, newAnalysisLineOfSightAnalysis, newAnalysisLineOfSightAnalysisObserver, newAnalysisLineOfSightAnalysisTarget, newAnalysisSliceAnalysis, newAnalysisSlicePlane, newAnalysisViewshed, newAnalysisViewshedAnalysis, newBasemap, newCamera, newCameraLayout, newColor, newCoreAccessor, newCoreCollection, newCoreError, newCoreHandles, newCoreWorkersConnection, newFormElementsAttachmentElement, newFormElementsElement, newFormElementsFieldElement, newFormElementsGroupElement, newFormElementsInputsAttachmentsAttachmentInput, newFormElementsInputsAttachmentsAudioInput, newFormElementsInputsAttachmentsDocumentInput, newFormElementsInputsAttachmentsImageInput, newFormElementsInputsAttachmentsSignatureInput, newFormElementsInputsAttachmentsVideoInput, newFormElementsInputsBarcodeScannerInput, newFormElementsInputsComboBoxInput, newFormElementsInputsDatePickerInput, newFormElementsInputsDateTimeOffsetPickerInput, newFormElementsInputsDateTimePickerInput, newFormElementsInputsRadioButtonsInput, newFormElementsInputsSwitchInput, newFormElementsInputsTextAreaInput, newFormElementsInputsTextBoxInput, newFormElementsInputsTimePickerInput, newFormElementsRelationshipElement, newFormElementsTextElement, newFormExpressionInfo, newFormFormTemplate, newGeometryCircle, newGeometryExtent, newGeometryGeometry, newGeometryHeightModelInfo, newGeometryMesh, newGeometryMultipoint, newGeometryPoint, newGeometryPolygon, newGeometryPolyline, newGeometrySpatialReference, newGeometrySupportGeographicTransformation, newGeometrySupportGeographicTransformationStep, newGeometrySupportMeshComponent, newGeometrySupportMeshGeoreferencedVertexSpace, newGeometrySupportMeshLocalVertexSpace, newGeometrySupportMeshMaterial, newGeometrySupportMeshMaterialMetallicRoughness, newGeometrySupportMeshTexture, newGeometrySupportMeshTextureTransform, newGeometrySupportMeshTransform, newGraphic, newGround, newIdentityCredential, newIdentityOAuthInfo, newIdentityServerInfo, newLayersBaseDynamicLayer, newLayersBaseElevationLayer, newLayersBaseTileLayer, newLayersBingMapsLayer, newLayersBuildingSceneLayer, newLayersBuildingSublayersBuildingComponentSublayer, newLayersBuildingSublayersBuildingGroupSublayer, newLayersBuildingSublayersBuildingSublayer, newLayersCSVLayer, newLayersCatalogCatalogDynamicGroupLayer, newLayersCatalogCatalogFootprintLayer, newLayersCatalogLayer, newLayersDimensionLayer, newLayersElevationLayer, newLayersFeatureLayer, newLayersGeoJSONLayer, newLayersGeoRSSLayer, newLayersGraphicsLayer, newLayersGroupLayer, newLayersImageryLayer, newLayersImageryTileLayer, newLayersIntegratedMesh3DTilesLayer, newLayersIntegratedMeshLayer, newLayersKMLLayer, newLayersKnowledgeGraphKnowledgeGraphSublayer, newLayersKnowledgeGraphLayer, newLayersLayer, newLayersLineOfSightLayer, newLayersMapImageLayer, newLayersMapNotesLayer, newLayersMediaLayer, newLayersOGCFeatureLayer, newLayersOpenStreetMapLayer, newLayersOrientedImageryLayer, newLayersPointCloudFiltersPointCloudBitfieldFilter, newLayersPointCloudFiltersPointCloudFilter, newLayersPointCloudFiltersPointCloudReturnFilter, newLayersPointCloudFiltersPointCloudValueFilter, newLayersPointCloudLayer, newLayersRouteLayer, newLayersSceneLayer, newLayersStreamLayer, newLayersSubtypeGroupLayer, newLayersSupportAggregateField, newLayersSupportBuildingFilter, newLayersSupportBuildingSummaryStatistics, newLayersSupportCodedValueDomain, newLayersSupportControlPointsGeoreference, newLayersSupportCornersGeoreference, newLayersSupportDimensionalDefinition, newLayersSupportDomain, newLayersSupportElevationSampler, newLayersSupportExpressionInfo, newLayersSupportExtentAndRotationGeoreference, newLayersSupportFacilityLayerInfo, newLayersSupportFeatureEffect, newLayersSupportFeatureFilter, newLayersSupportFeatureReductionBinning, newLayersSupportFeatureReductionCluster, newLayersSupportFeatureReductionSelection, newLayersSupportFeatureTemplate, newLayersSupportFeatureType, newLayersSupportField, newLayersSupportFieldsIndex, newLayersSupportGeometryFieldsInfo, newLayersSupportImageElement, newLayersSupportInheritedDomain, newLayersSupportKMLSublayer, newLayersSupportLOD, newLayersSupportLabelClass, newLayersSupportLayerFloorInfo, newLayersSupportLevelLayerInfo, newLayersSupportLocalMediaElementSource, newLayersSupportMapImage, newLayersSupportMosaicRule, newLayersSupportMultidimensionalSubset, newLayersSupportPixelBlock, newLayersSupportPublishingInfo, newLayersSupportRangeDomain, newLayersSupportRasterBandInfo, newLayersSupportRasterFunction, newLayersSupportRasterInfo, newLayersSupportRasterSensorInfo, newLayersSupportRelationship, newLayersSupportRouteStopSymbols, newLayersSupportRouteSymbols, newLayersSupportSceneFilter, newLayersSupportSceneModification, newLayersSupportSceneModifications, newLayersSupportSiteLayerInfo, newLayersSupportSublayer, newLayersSupportSubtype, newLayersSupportSubtypeSublayer, newLayersSupportTelemetryData, newLayersSupportTelemetryDisplay, newLayersSupportTileInfo, newLayersSupportTileMatrixSet, newLayersSupportTimeInfo, newLayersSupportVideoElement, newLayersSupportVideoTimeExtent, newLayersSupportWMSSublayer, newLayersSupportWMTSStyle, newLayersSupportWMTSSublayer, newLayersTileLayer, newLayersUnknownLayer, newLayersUnsupportedLayer, newLayersVectorTileLayer, newLayersVideoLayer, newLayersViewshedLayer, newLayersVoxelLayer, newLayersVoxelVoxelDynamicSection, newLayersVoxelVoxelSlice, newLayersVoxelVoxelTransferFunctionStyle, newLayersVoxelVoxelVariableStyle, newLayersVoxelVoxelVolumeStyle, newLayersWCSLayer, newLayersWFSLayer, newLayersWMSLayer, newLayersWMTSLayer, newLayersWebTileLayer, newMap, newNetworksNetwork, newNetworksSupportNamedTraceConfiguration, newNetworksSupportNetworkSystemLayers, newNetworksSupportTerminal, newNetworksSupportTerminalConfiguration, newNetworksSupportTopologyValidationJobInfo, newNetworksSupportTraceConfiguration, newNetworksSupportTraceJobInfo, newNetworksSupportUNTraceConfiguration, newNetworksUtilityNetwork, newPopupContentAttachmentsContent, newPopupContentBarChartMediaInfo, newPopupContentColumnChartMediaInfo, newPopupContentContent, newPopupContentCustomContent, newPopupContentExpressionContent, newPopupContentFieldsContent, newPopupContentImageMediaInfo, newPopupContentLineChartMediaInfo, newPopupContentMediaContent, newPopupContentPieChartMediaInfo, newPopupContentRelationshipContent, newPopupContentSupportChartMediaInfoValue, newPopupContentSupportChartMediaInfoValueSeries, newPopupContentSupportImageMediaInfoValue, newPopupContentTextContent, newPopupContentUtilityNetworkAssociationsContent, newPopupElementExpressionInfo, newPopupExpressionInfo, newPopupFieldInfo, newPopupLayerOptions, newPopupRelatedRecordsInfo, newPopupSupportFieldInfoFormat, newPopupSupportRelatedRecordsInfoFieldOrder, newPopupTemplate, newPortalPortal, newPortalPortalFolder, newPortalPortalGroup, newPortalPortalItem, newPortalPortalItemResource, newPortalPortalQueryParams, newPortalPortalQueryResult, newPortalPortalRating, newPortalPortalUser, newRenderersClassBreaksRenderer, newRenderersDictionaryRenderer, newRenderersDotDensityRenderer, newRenderersFlowRenderer, newRenderersHeatmapRenderer, newRenderersPieChartRenderer, newRenderersPointCloudClassBreaksRenderer, newRenderersPointCloudRGBRenderer, newRenderersPointCloudRenderer, newRenderersPointCloudStretchRenderer, newRenderersPointCloudUniqueValueRenderer, newRenderersRasterColormapRenderer, newRenderersRasterShadedReliefRenderer, newRenderersRasterStretchRenderer, newRenderersRenderer, newRenderersSimpleRenderer, newRenderersSupportAttributeColorInfo, newRenderersSupportAuthoringInfo, newRenderersSupportAuthoringInfoVisualVariable, newRenderersSupportClassBreakInfo, newRenderersSupportColormapInfo, newRenderersSupportHeatmapColorStop, newRenderersSupportUniqueValue, newRenderersSupportUniqueValueClass, newRenderersSupportUniqueValueGroup, newRenderersSupportUniqueValueInfo, newRenderersUniqueValueRenderer, newRenderersVectorFieldRenderer, newRenderersVisualVariablesColorVariable, newRenderersVisualVariablesOpacityVariable, newRenderersVisualVariablesRotationVariable, newRenderersVisualVariablesSizeVariable, newRenderersVisualVariablesSupportColorSizeStop, newRenderersVisualVariablesSupportColorStop, newRenderersVisualVariablesSupportOpacityStop, newRenderersVisualVariablesSupportSizeStop, newRenderersVisualVariablesVisualVariable, newRestFeatureServiceFeatureService, newRestKnowledgeGraphDataModel, newRestKnowledgeGraphEntity, newRestKnowledgeGraphEntityType, newRestKnowledgeGraphFieldIndex, newRestKnowledgeGraphGraphApplyEdits, newRestKnowledgeGraphGraphApplyEditsResult, newRestKnowledgeGraphGraphNamedObject, newRestKnowledgeGraphGraphObject, newRestKnowledgeGraphGraphObjectType, newRestKnowledgeGraphGraphProperty, newRestKnowledgeGraphGraphQuery, newRestKnowledgeGraphGraphQueryResult, newRestKnowledgeGraphGraphQueryStreaming, newRestKnowledgeGraphGraphQueryStreamingResult, newRestKnowledgeGraphGraphSearch, newRestKnowledgeGraphGraphSearchStreaming, newRestKnowledgeGraphInputQuantizationParameters, newRestKnowledgeGraphKnowledgeGraph, newRestKnowledgeGraphOutputQuantizationParameters, newRestKnowledgeGraphPath, newRestKnowledgeGraphRelationship, newRestKnowledgeGraphRelationshipType, newRestKnowledgeGraphSearchIndex, newRestKnowledgeGraphServiceDefinition, newRestNetworksSupportAggregatedGeometry, newRestNetworksSupportAssociation, newRestNetworksSupportAssociationGeometriesResult, newRestNetworksSupportFunctionResult, newRestNetworksSupportNetworkElement, newRestNetworksSupportQueryAssociationsParameters, newRestNetworksSupportQueryAssociationsResult, newRestNetworksSupportSynthesizeAssociationGeometriesParameters, newRestNetworksSupportTraceLocation, newRestNetworksSupportTraceParameters, newRestNetworksSupportTraceResult, newRestNetworksSupportValidateNetworkTopologyParameters, newRestQuerySupportAttachmentInfo, newRestSupportAddressCandidate, newRestSupportAlgorithmicColorRamp, newRestSupportArealUnit, newRestSupportAreasAndLengthsParameters, newRestSupportAttachmentQuery, newRestSupportBufferParameters, newRestSupportCameraInfo, newRestSupportClosestFacilityParameters, newRestSupportClosestFacilitySolveResult, newRestSupportColorRamp, newRestSupportDataFile, newRestSupportDataLayer, newRestSupportDensifyParameters, newRestSupportDirectionLine, newRestSupportDirectionPoint, newRestSupportDirectionsEvent, newRestSupportDirectionsFeature, newRestSupportDirectionsFeatureSet, newRestSupportDistanceParameters, newRestSupportFeatureSet, newRestSupportFetchPlaceParameters, newRestSupportFindImagesParameters, newRestSupportFindImagesResult, newRestSupportFindParameters, newRestSupportFindResult, newRestSupportGPMessage, newRestSupportGeneralizeParameters, newRestSupportIdentifyParameters, newRestSupportIdentifyResult, newRestSupportImageAngleParameters, newRestSupportImageAngleResult, newRestSupportImageAreaParameters, newRestSupportImageAreaResult, newRestSupportImageBoundaryParameters, newRestSupportImageBoundaryResult, newRestSupportImageDistanceParameters, newRestSupportImageDistanceResult, newRestSupportImageGPSInfo, newRestSupportImageGPSInfoParameters, newRestSupportImageGPSInfoResult, newRestSupportImageHeightParameters, newRestSupportImageHeightResult, newRestSupportImageHistogramParameters, newRestSupportImageIdentifyParameters, newRestSupportImageIdentifyResult, newRestSupportImageInspectionInfo, newRestSupportImageParameters, newRestSupportImagePixelLocationParameters, newRestSupportImagePixelLocationResult, newRestSupportImagePointParameters, newRestSupportImagePointResult, newRestSupportImageSample, newRestSupportImageSampleParameters, newRestSupportImageSampleResult, newRestSupportImageToMapMultirayParameters, newRestSupportImageToMapParameters, newRestSupportImageUrlParameters, newRestSupportImageUrlResult, newRestSupportJobInfo, newRestSupportLegendLayer, newRestSupportLengthsParameters, newRestSupportLinearUnit, newRestSupportMapToImageParameters, newRestSupportMeasureAreaFromImageResult, newRestSupportMeasureFromImageParameters, newRestSupportMeasureLengthFromImageResult, newRestSupportMultipartColorRamp, newRestSupportNAMessage, newRestSupportNetworkFeatureSet, newRestSupportNetworkUrl, newRestSupportOffsetParameters, newRestSupportParameterValue, newRestSupportPlaceResult, newRestSupportPlacesParameters, newRestSupportPlacesQueryParameters, newRestSupportPlacesQueryResult, newRestSupportPointBarrier, newRestSupportPolygonBarrier, newRestSupportPolylineBarrier, newRestSupportPrintParameters, newRestSupportPrintTemplate, newRestSupportProjectParameters, newRestSupportQuery, newRestSupportRasterData, newRestSupportRelationParameters, newRestSupportRelationshipQuery, newRestSupportRouteInfo, newRestSupportRouteParameters, newRestSupportRouteResult, newRestSupportRouteSolveResult, newRestSupportServiceAreaParameters, newRestSupportServiceAreaSolveResult, newRestSupportStatisticDefinition, newRestSupportStop, newRestSupportTopFeaturesQuery, newRestSupportTopFilter, newRestSupportTravelMode, newRestSupportTrimExtendParameters, newSupportActionsActionBase, newSupportActionsActionButton, newSupportActionsActionToggle, newSupportBasemapStyle, newSupportMapFloorInfo, newSymbolsCIMSymbol, newSymbolsCalloutsCallout3D, newSymbolsCalloutsLineCallout3D, newSymbolsEdgesEdges3D, newSymbolsEdgesSketchEdges3D, newSymbolsEdgesSolidEdges3D, newSymbolsExtrudeSymbol3DLayer, newSymbolsFillSymbol, newSymbolsFillSymbol3DLayer, newSymbolsFont, newSymbolsIconSymbol3DLayer, newSymbolsLabelSymbol3D, newSymbolsLineStyleMarker3D, newSymbolsLineSymbol, newSymbolsLineSymbol3D, newSymbolsLineSymbol3DLayer, newSymbolsLineSymbolMarker, newSymbolsMarkerSymbol, newSymbolsMeshSymbol3D, newSymbolsObjectSymbol3DLayer, newSymbolsPathSymbol3DLayer, newSymbolsPatternsLineStylePattern3D, newSymbolsPatternsStylePattern3D, newSymbolsPictureFillSymbol, newSymbolsPictureMarkerSymbol, newSymbolsPointSymbol3D, newSymbolsPolygonSymbol3D, newSymbolsSimpleFillSymbol, newSymbolsSimpleLineSymbol, newSymbolsSimpleMarkerSymbol, newSymbolsSupportStyleOrigin, newSymbolsSupportSymbol3DVerticalOffset, newSymbolsSymbol, newSymbolsSymbol3D, newSymbolsSymbol3DLayer, newSymbolsTextSymbol, newSymbolsTextSymbol3DLayer, newSymbolsWaterSymbol3DLayer, newSymbolsWebStyleSymbol, newTablesAttributeTableTemplate, newTablesElementsAttributeTableAttachmentElement, newTablesElementsAttributeTableElement, newTablesElementsAttributeTableFieldElement, newTablesElementsAttributeTableGroupElement, newTablesElementsAttributeTableRelationshipElement, newTimeExtent, newTimeInterval, newTimeTimeExtent, newTimeTimeInterval, newVersionManagementVersionManagementService, newVersionManagementVersioningState, newViewpoint, newViews2dLayersBaseLayerView2D, newViews2dLayersBaseLayerViewGL2D, newViews2dViewState, newViews3dAnalysisAreaMeasurementAnalysisView3D, newViews3dAnalysisDirectLineMeasurementAnalysisView3D, newViews3dAnalysisLineOfSightAnalysisResult, newViews3dAnalysisLineOfSightAnalysisView3D, newViews3dAnalysisSliceAnalysisView3D, newViews3dAnalysisViewshedAnalysisView3D, newViews3dEnvironmentCloudyWeather, newViews3dEnvironmentFoggyWeather, newViews3dEnvironmentRainyWeather, newViews3dEnvironmentSnowyWeather, newViews3dEnvironmentSunLighting, newViews3dEnvironmentSunnyWeather, newViews3dEnvironmentVirtualLighting, newViews3dWebglRenderNode, newViewsAnalysisDimensionAnalysisView, newViewsBasemapView, newViewsDrawDraw, newViewsDrawDrawAction, newViewsDrawMultipointDrawAction, newViewsDrawPointDrawAction, newViewsDrawPolygonDrawAction, newViewsDrawPolylineDrawAction, newViewsDrawSegmentDrawAction, newViewsGroundView, newViewsInputGamepadGamepadInputDevice, newViewsInputGamepadGamepadSettings, newViewsInputInput, newViewsInteractiveSketchSketchLabelOptions, newViewsInteractiveSketchSketchTooltipOptions, newViewsInteractiveSketchSketchValueOptions, newViewsInteractiveSnappingFeatureSnappingLayerSource, newViewsInteractiveSnappingSnappingOptions, newViewsInteractiveTooltip, newViewsLayersBuildingComponentSublayerView, newViewsLayersBuildingSceneLayerView, newViewsLayersCatalogDynamicGroupLayerView, newViewsLayersCatalogFootprintLayerView, newViewsLayersCatalogLayerView, newViewsLayersDimensionLayerView, newViewsLayersFeatureLayerView, newViewsLayersImageryLayerView, newViewsLayersLayerView, newViewsLayersMediaLayerView, newViewsLayersOGCFeatureLayerView, newViewsLayersSceneLayerView, newViewsLayersStreamLayerView, newViewsLayersViewshedLayerView, newViewsMagnifier, newViewsMapView, newViewsNavigationGamepadGamepadSettings, newViewsNavigationNavigation, newViewsSceneView, newViewsTheme, newViewsUiDefaultUI, newViewsUiUI, newViewsView, newViewsView2D, newViewsViewAnimation, newWebDocument2D, newWebMap, newWebScene, newWebdocApplicationPropertiesSearch, newWebdocApplicationPropertiesSearchLayer, newWebdocApplicationPropertiesSearchLayerField, newWebdocApplicationPropertiesSearchTable, newWebdocApplicationPropertiesSearchTableField, newWebdocApplicationPropertiesViewing, newWebdocGeotriggersInfo, newWebdocGeotriggersInfoDeviceLocationFeed, newWebdocGeotriggersInfoExpressionInfo, newWebdocGeotriggersInfoFeatureFenceParameters, newWebdocGeotriggersInfoFeatureFilter, newWebdocGeotriggersInfoFeatureLayerSource, newWebdocGeotriggersInfoFenceGeotrigger, newWebdocGeotriggersInfoGeotrigger, newWebdocGeotriggersInfoGeotriggerNotificationOptions, newWebdocIPSInfo, newWebdocIpsPositioningService, newWebdocWidgetsTimeSlider, newWebmapApplicationProperties, newWebmapBackgroundColorBackground, newWebmapBookmark, newWebmapInitialViewProperties, newWebsceneApplicationProperties, newWebsceneBackgroundBackground, newWebsceneBackgroundColorBackground, newWebsceneEnvironment, newWebsceneInitialViewProperties, newWebscenePresentation, newWebsceneSlide, newWebsceneSunLighting, newWebsceneVirtualLighting, newWidgetsAreaMeasurement2D, newWidgetsAreaMeasurement2DAreaMeasurement2DViewModel, newWidgetsAreaMeasurement3D, newWidgetsAreaMeasurement3DAreaMeasurement3DViewModel, newWidgetsAttachments, newWidgetsAttachmentsAttachmentsViewModel, newWidgetsAttribution, newWidgetsAttributionAttributionViewModel, newWidgetsBasemapGallery, newWidgetsBasemapGalleryBasemapGalleryViewModel, newWidgetsBasemapGallerySupportBasemapGalleryItem, newWidgetsBasemapGallerySupportLocalBasemapsSource, newWidgetsBasemapGallerySupportPortalBasemapsSource, newWidgetsBasemapLayerList, newWidgetsBasemapLayerListBasemapLayerListViewModel, newWidgetsBasemapToggle, newWidgetsBasemapToggleBasemapToggleViewModel, newWidgetsBatchAttributeForm, newWidgetsBookmarks, newWidgetsBookmarksBookmarksViewModel, newWidgetsBuildingExplorer, newWidgetsBuildingExplorerBuildingExplorerViewModel, newWidgetsBuildingExplorerBuildingLevel, newWidgetsBuildingExplorerBuildingPhase, newWidgetsCatalogLayerList, newWidgetsCatalogLayerListCatalogLayerListViewModel, newWidgetsCompass, newWidgetsCompassCompassViewModel, newWidgetsCoordinateConversion, newWidgetsCoordinateConversionCoordinateConversionViewModel, newWidgetsCoordinateConversionSupportConversion, newWidgetsCoordinateConversionSupportFormat, newWidgetsDaylight, newWidgetsDaylightDaylightViewModel, newWidgetsDirectLineMeasurement3D, newWidgetsDirectLineMeasurement3DDirectLineMeasurement3DViewModel, newWidgetsDirectionalPad, newWidgetsDirectionalPadDirectionalPadViewModel, newWidgetsDirections, newWidgetsDirectionsDirectionsViewModel, newWidgetsDistanceMeasurement2D, newWidgetsDistanceMeasurement2DDistanceMeasurement2DViewModel, newWidgetsEditor, newWidgetsEditorCreateFeaturesWorkflow, newWidgetsEditorCreateFeaturesWorkflowData, newWidgetsEditorEditorViewModel, newWidgetsEditorEdits, newWidgetsEditorSupportEditorItem, newWidgetsEditorUpdateWorkflow, newWidgetsEditorUpdateWorkflowData, newWidgetsEditorWorkflow, newWidgetsElevationProfile, newWidgetsElevationProfileElevationProfileLine, newWidgetsElevationProfileElevationProfileLineGround, newWidgetsElevationProfileElevationProfileLineInput, newWidgetsElevationProfileElevationProfileLineQuery, newWidgetsElevationProfileElevationProfileLineView, newWidgetsElevationProfileElevationProfileViewModel, newWidgetsExpand, newWidgetsExpandExpandViewModel, newWidgetsFeature, newWidgetsFeatureFeatureViewModel, newWidgetsFeatureForm, newWidgetsFeatureFormFeatureFormViewModel, newWidgetsFeatureFormFieldInput, newWidgetsFeatureFormGroupInput, newWidgetsFeatureFormRelationshipInput, newWidgetsFeatureTable, newWidgetsFeatureTableActionColumn, newWidgetsFeatureTableAttachmentsColumn, newWidgetsFeatureTableFeatureTableViewModel, newWidgetsFeatureTableFieldColumn, newWidgetsFeatureTableGridColumn, newWidgetsFeatureTableGridGroupColumn, newWidgetsFeatureTableGridSupportButtonMenu, newWidgetsFeatureTableGridSupportButtonMenuItem, newWidgetsFeatureTableGridSupportButtonMenuViewModel, newWidgetsFeatureTableRelationshipColumn, newWidgetsFeatureTableSupportColumnTemplate, newWidgetsFeatureTableSupportColumnTemplateBase, newWidgetsFeatureTableSupportFieldColumnTemplate, newWidgetsFeatureTableSupportGroupColumnTemplate, newWidgetsFeatureTableSupportTableTemplate, newWidgetsFeatureTemplates, newWidgetsFeatureTemplatesFeatureTemplatesViewModel, newWidgetsFeatureTemplatesTemplateItem, newWidgetsFeatureTemplatesTemplateItemGroup, newWidgetsFeatures, newWidgetsFeaturesFeaturesViewModel, newWidgetsFloorFilter, newWidgetsFloorFilterFloorFilterViewModel, newWidgetsFullscreen, newWidgetsFullscreenFullscreenViewModel, newWidgetsHistogram, newWidgetsHistogramHistogramViewModel, newWidgetsHistogramRangeSlider, newWidgetsHistogramRangeSliderHistogramRangeSliderViewModel, newWidgetsHome, newWidgetsHomeHomeViewModel, newWidgetsLayerList, newWidgetsLayerListLayerListViewModel, newWidgetsLayerListListItem, newWidgetsLayerListListItemPanel, newWidgetsLegend, newWidgetsLegendLegendViewModel, newWidgetsLegendSupportActiveLayerInfo, newWidgetsLineOfSight, newWidgetsLineOfSightLineOfSightTarget, newWidgetsLineOfSightLineOfSightViewModel, newWidgetsLocate, newWidgetsLocateLocateViewModel, newWidgetsMeasurement, newWidgetsMeasurementMeasurementViewModel, newWidgetsNavigationToggle, newWidgetsNavigationToggleNavigationToggleViewModel, newWidgetsOrientedImageryViewer, newWidgetsOrientedImageryViewerOrientedImageryViewerViewModel, newWidgetsPopup, newWidgetsPopupPopupViewModel, newWidgetsPrint, newWidgetsPrintCustomTemplate, newWidgetsPrintPrintViewModel, newWidgetsPrintTemplateOptions, newWidgetsScaleBar, newWidgetsScaleBarScaleBarViewModel, newWidgetsScaleRangeSlider, newWidgetsScaleRangeSliderScaleRangeSliderViewModel, newWidgetsScaleRangeSliderScaleRanges, newWidgetsSearch, newWidgetsSearchLayerSearchSource, newWidgetsSearchLocatorSearchSource, newWidgetsSearchSearchResultRenderer, newWidgetsSearchSearchSource, newWidgetsSearchSearchViewModel, newWidgetsShadowCast, newWidgetsShadowCastShadowCastViewModel, newWidgetsSketch, newWidgetsSketchSketchViewModel, newWidgetsSlice, newWidgetsSliceSliceViewModel, newWidgetsSlider, newWidgetsSliderSliderViewModel, newWidgetsSmartMappingBinaryColorSizeSlider, newWidgetsSmartMappingBinaryColorSizeSliderBinaryColorSizeSliderViewModel, newWidgetsSmartMappingClassedColorSlider, newWidgetsSmartMappingClassedColorSliderClassedColorSliderViewModel, newWidgetsSmartMappingClassedSizeSlider, newWidgetsSmartMappingClassedSizeSliderClassedSizeSliderViewModel, newWidgetsSmartMappingColorSizeSlider, newWidgetsSmartMappingColorSizeSliderColorSizeSliderViewModel, newWidgetsSmartMappingColorSlider, newWidgetsSmartMappingColorSliderColorSliderViewModel, newWidgetsSmartMappingHeatmapSlider, newWidgetsSmartMappingHeatmapSliderHeatmapSliderViewModel, newWidgetsSmartMappingOpacitySlider, newWidgetsSmartMappingOpacitySliderOpacitySliderViewModel, newWidgetsSmartMappingSizeSlider, newWidgetsSmartMappingSizeSliderSizeSliderViewModel, newWidgetsSmartMappingSmartMappingPrimaryHandleSliderViewModel, newWidgetsSmartMappingSmartMappingSliderBase, newWidgetsSmartMappingSmartMappingSliderViewModel, newWidgetsSupportGridControls, newWidgetsSupportGridControlsGridControlsViewModel, newWidgetsSupportSnappingControls, newWidgetsSupportSnappingControlsSnappingControlsViewModel, newWidgetsSwipe, newWidgetsSwipeSwipeViewModel, newWidgetsTableList, newWidgetsTableListListItem, newWidgetsTableListListItemPanel, newWidgetsTableListTableListViewModel, newWidgetsTimeSlider, newWidgetsTimeSliderTimeSliderViewModel, newWidgetsTimeZoneLabel, newWidgetsTrack, newWidgetsTrackTrackViewModel, newWidgetsUtilityNetworkAssociations, newWidgetsUtilityNetworkAssociationsUtilityNetworkAssociationsViewModel, newWidgetsUtilityNetworkTrace, newWidgetsUtilityNetworkTraceUtilityNetworkTraceViewModel, newWidgetsUtilityNetworkValidateTopology, newWidgetsUtilityNetworkValidateTopologyUtilityNetworkValidateTopologyViewModel, newWidgetsValuePicker, newWidgetsValuePickerValuePickerCollection, newWidgetsValuePickerValuePickerCombobox, newWidgetsValuePickerValuePickerLabel, newWidgetsValuePickerValuePickerSlider, newWidgetsVersionManagementVersionManagementViewModel, newWidgetsVideoPlayer, newWidgetsVideoPlayerVideoPlayerViewModel, newWidgetsWeather, newWidgetsWeatherWeatherViewModel, newWidgetsWidget, newWidgetsZoom, newWidgetsZoomZoomViewModel };
|