Skip to content

Commit

Permalink
fix: export JsonObject
Browse files Browse the repository at this point in the history
  • Loading branch information
gajus committed Oct 30, 2023
1 parent 34e4b9d commit 5c4e8d3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ type JsonValue =
| null
| undefined;

type JsonObject = {
/**
* @public
*/
export type JsonObject = {
[k: string]: JsonValue;
};

Expand Down

0 comments on commit 5c4e8d3

Please sign in to comment.