Skip to content

Commit 5c4e8d3

Browse files
committed
fix: export JsonObject
1 parent 34e4b9d commit 5c4e8d3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/types.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ type JsonValue =
1010
| null
1111
| undefined;
1212

13-
type JsonObject = {
13+
/**
14+
* @public
15+
*/
16+
export type JsonObject = {
1417
[k: string]: JsonValue;
1518
};
1619

0 commit comments

Comments
 (0)