Skip to content

Commit

Permalink
fix(types): add export for GeohashLayerProps (#8836)
Browse files Browse the repository at this point in the history
  • Loading branch information
4very authored and Pessimistress committed Apr 26, 2024
1 parent 677f096 commit d5221ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion modules/geo-layers/src/geohash-layer/geohash-layer.ts
Expand Up @@ -9,7 +9,7 @@ const defaultProps: DefaultProps<GeohashLayerProps> = {
/**
* Properties of `GeohashLayer`.
*/
type GeohashLayerProps<DataT = unknown> = {
export type GeohashLayerProps<DataT = unknown> = {
/**
* Called for each data object to retrieve the geohash string identifier.
*
Expand Down
1 change: 1 addition & 0 deletions modules/geo-layers/src/index.ts
Expand Up @@ -47,6 +47,7 @@ export type {TerrainLayerProps} from './terrain-layer/terrain-layer';
export type {Tile3DLayerProps} from './tile-3d-layer/tile-3d-layer';
export type {MVTLayerProps, MVTLayerPickingInfo} from './mvt-layer/mvt-layer';
export type {GeoCellLayerProps as _GeoCellLayerProps} from './geo-cell-layer/GeoCellLayer';
export type {GeohashLayerProps} from './geohash-layer/geohash-layer';

// Tileset2D

Expand Down

0 comments on commit d5221ad

Please sign in to comment.