Skip to content

Commit c8bb327

Browse files
committed
Refactor export statements for improved readability and consistency
1 parent a5a4f69 commit c8bb327

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

index.ts

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import Pbf from 'pbf';
22
import {
3-
type GeoJSONOptions,
4-
type Feature,
5-
GeoJSONWrapper,
6-
GEOJSON_TILE_LAYER_NAME,
3+
type GeoJSONOptions,
4+
type Feature,
5+
GeoJSONWrapper,
6+
GEOJSON_TILE_LAYER_NAME,
77
} from "./lib/geojson_wrapper";
88
import geojsonvt from 'geojson-vt';
99
import {VectorTileFeatureLike, VectorTileLike, VectorTileLayerLike} from './lib/types';
@@ -181,4 +181,12 @@ function writeValue(value: string | boolean | number, pbf: Pbf) {
181181
}
182182
}
183183

184-
export { GeoJSONWrapper, GeoJSONOptions, Feature, GEOJSON_TILE_LAYER_NAME };
184+
export {
185+
GeoJSONWrapper,
186+
GeoJSONOptions,
187+
Feature,
188+
GEOJSON_TILE_LAYER_NAME,
189+
type VectorTileFeatureLike,
190+
type VectorTileLike,
191+
type VectorTileLayerLike,
192+
};

0 commit comments

Comments
 (0)