Primitive types are not nullable by default
This commit is contained in:
+4
-4
@@ -28,7 +28,7 @@ var EsriJSONCRS = function() {};
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* CRS well know identifier.
|
* CRS well know identifier.
|
||||||
* @type {!number}
|
* @type {number}
|
||||||
*/
|
*/
|
||||||
EsriJSONCRS.prototype.wkid;
|
EsriJSONCRS.prototype.wkid;
|
||||||
|
|
||||||
@@ -43,14 +43,14 @@ var EsriJSONPoint = function() {};
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* M value of point.
|
* M value of point.
|
||||||
* @type {!number}
|
* @type {number}
|
||||||
*/
|
*/
|
||||||
EsriJSONPoint.prototype.m;
|
EsriJSONPoint.prototype.m;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* X coordinate of point.
|
* X coordinate of point.
|
||||||
* @type {!number}
|
* @type {number}
|
||||||
*/
|
*/
|
||||||
EsriJSONPoint.prototype.x;
|
EsriJSONPoint.prototype.x;
|
||||||
|
|
||||||
@@ -58,7 +58,7 @@ EsriJSONPoint.prototype.x;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Y coordinate of point.
|
* Y coordinate of point.
|
||||||
* @type {!number}
|
* @type {number}
|
||||||
*/
|
*/
|
||||||
EsriJSONPoint.prototype.y;
|
EsriJSONPoint.prototype.y;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user