Skip to content

Commit f3b96ba

Browse files
committed
fix: correct export syntax for ScaleBinding and HexbinData types
1 parent c3f9e8a commit f3b96ba

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.changeset/flat-brooms-talk.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'vue-leaflet-hexbin': patch
3+
---
4+
5+
fix exported types

packages/vue-leaflet-hexbin/src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ import LHexbinLayer from "./components/LHexbinLayer.vue";
33

44
import { type ScaleBinding, type HexbinData } from "leaflet-hexbin"
55

6-
export type {
7-
ScaleBinding,
8-
HexbinData
6+
export {
7+
type ScaleBinding,
8+
type HexbinData
99
}
1010

1111
export default LHexbinLayer

0 commit comments

Comments
 (0)