UNPKG

@arcgis/core

Version:

ArcGIS Maps SDK for JavaScript: A complete 2D and 3D mapping and data visualization API

19 lines 366 B
/** * The version of the source document from which the WebScene or WebMap was read. * * @since 5.0 */ export default abstract class Version { /** * The major version of the WebMap or WebScene. * * @since 5.0 */ readonly major: number; /** * The minor version of the WebMap or WebScene. * * @since 5.0 */ readonly minor: number; }