Skip to content

Commit 4d11065

Browse files
committed
fix import path
1 parent 15a260a commit 4d11065

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/toGeoJson.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { decodeWKB } from './wkb.js'
77
* An AsyncBuffer is a buffer-like object that can be read asynchronously.
88
*
99
* @import { AsyncBuffer, Compressors } from 'hyparquet'
10-
* @import { Feature, GeoJSON } from './geojson.js'
10+
* @import { Feature, GeoJSON } from '../src/geojson.js'
1111
* @param {Object} options
1212
* @param {AsyncBuffer} options.file
1313
* @param {Compressors} [options.compressors]

src/wkb.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const geometryTypeCompoundSurface = 24
2727
/**
2828
* WKB (Well Known Binary) decoder for geometry objects.
2929
*
30-
* @import { Geometry } from './geojson.js'
30+
* @import { Geometry } from '../src/geojson.js'
3131
* @param {Uint8Array} wkb
3232
* @returns {Geometry} GeoJSON geometry object
3333
*/

0 commit comments

Comments
 (0)