ice-render 0.0.32 → 0.0.33
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/dist/types/ICE.d.ts
CHANGED
|
@@ -23,10 +23,10 @@ export default class GeoPoint {
|
|
|
23
23
|
*
|
|
24
24
|
*
|
|
25
25
|
* 从 JSON 对象创建 {GeoPoint} 实例。
|
|
26
|
-
* @param {
|
|
26
|
+
* @param {Object} o the JSON parsed object
|
|
27
27
|
* @return {GeoPoint} a newly constructed GeoPoint
|
|
28
28
|
*/
|
|
29
|
-
static load(o:
|
|
29
|
+
static load(o: any): GeoPoint;
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
32
|
* @method cloneArray
|
package/package.json
CHANGED