From 5c4e8d373db96c91ee3b0cd7c543ed72bf158791 Mon Sep 17 00:00:00 2001 From: Gajus Kuizinas Date: Mon, 30 Oct 2023 11:39:57 -0600 Subject: [PATCH] fix: export JsonObject --- src/types.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/types.ts b/src/types.ts index 7efd853..ba96e7f 100644 --- a/src/types.ts +++ b/src/types.ts @@ -10,7 +10,10 @@ type JsonValue = | null | undefined; -type JsonObject = { +/** + * @public + */ +export type JsonObject = { [k: string]: JsonValue; };