Skip to content

Commit

Permalink
Update to 4.28.7
Browse files Browse the repository at this point in the history
  • Loading branch information
dasa committed Nov 3, 2023
1 parent 6d48e25 commit cfd701d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions typescript/archive/arcgis-js-api-4.28.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26101,13 +26101,13 @@ declare namespace __esri {
*
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-RangeDomain.html#maxValue)
*/
maxValue: number;
maxValue: number | string;
/**
* The minimum valid value.
*
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-RangeDomain.html#minValue)
*/
minValue: number;
minValue: number | string;
/**
* The domain type.
*
Expand All @@ -26124,13 +26124,13 @@ declare namespace __esri {
*
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-RangeDomain.html#maxValue)
*/
maxValue?: number;
maxValue?: number | string;
/**
* The minimum valid value.
*
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-RangeDomain.html#minValue)
*/
minValue?: number;
minValue?: number | string;
}

export interface RasterBandInfo extends Accessor, JSONSupport {}
Expand Down Expand Up @@ -80627,7 +80627,7 @@ declare namespace __esri {
input: WebMap | Collection<FeatureLayer> | FeatureLayer[] | Network,
fromVersion: Date | VersionIdentifier,
toVersion: Date | VersionIdentifier
): boolean;
): Promise<boolean>;
/**
* Creates a new version given the following parameters.
*
Expand Down Expand Up @@ -84764,7 +84764,7 @@ declare namespace __esri {
*/
readonly suspended: boolean;
/**
* Value is `true` when the layer is updating; for example, if it is in the process of fetching data.
* Indicates if the layer view is making any updates that will impact what is displayed on the map.
*
* @default false
*
Expand Down

0 comments on commit cfd701d

Please sign in to comment.