Skip to content

Commit 476892b

Browse files
lesbaaLes Moffat
and
Les Moffat
authored
RD-685 Fix type exports (#197)
* RD-685 Fix type exports * 3.2.3 * RD-685 update changelog --------- Co-authored-by: Les Moffat <[email protected]>
1 parent c7b7a66 commit 476892b

File tree

5 files changed

+16
-3
lines changed

5 files changed

+16
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# MapTiler SDK Changelog
22

3+
## 3.2.3
4+
## ✨ Features and improvements
5+
None
6+
7+
## 🐛 Bug fixes
8+
- Fixes incorrect exports of some types from sdk helper functions.
9+
10+
## 🔧 Others
11+
None
12+
313
## 3.2.2
414
## ✨ Features and improvements
515
None

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@maptiler/sdk",
3-
"version": "3.2.2",
3+
"version": "3.2.3",
44
"description": "The Javascript & TypeScript map SDK tailored for MapTiler Cloud",
55
"author": "MapTiler",
66
"module": "dist/maptiler-sdk.mjs",

src/helpers/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
export * from "./screenshot";
22
export * from "./vectorlayerhelpers";
3+
export type * from "./vectorlayerhelpers";
4+
export type * from "./stylehelper";
35
export * from "./stylehelper";

src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,5 +255,6 @@ export * from "./language";
255255
export type { Unit } from "./types";
256256
export * from "./converters";
257257
export * as helpers from "./helpers";
258+
export type * from "./helpers";
258259
export * from "./ColorRamp";
259260
export * from "./utils";

0 commit comments

Comments
 (0)