Transformed types

Using the [ts.js codemod](https://gist.github.com/tschaub/1ea498c9d1e5268cf36d212b3949be4e):

    jscodeshift --transform ts.js src
This commit is contained in:
Tim Schaub
2018-09-05 08:05:29 -06:00
parent f2aaaa19e1
commit ccfacc5ee6
239 changed files with 3999 additions and 3999 deletions
+2 -2
View File
@@ -18,7 +18,7 @@ export const RADIUS = 6378137;
* Extent of the EPSG:4326 projection which is the whole world.
*
* @const
* @type {module:ol/extent~Extent}
* @type {import("../extent.js").Extent}
*/
export const EXTENT = [-180, -90, 180, 90];
@@ -64,7 +64,7 @@ class EPSG4326Projection extends Projection {
* Projections equal to EPSG:4326.
*
* @const
* @type {Array<module:ol/proj/Projection>}
* @type {Array<import("./Projection.js").default>}
*/
export const PROJECTIONS = [
new EPSG4326Projection('CRS:84'),