From 664e1aa7ca8c74c0099ee9176737775a5e7a690f Mon Sep 17 00:00:00 2001 From: Alejandro Reyes Date: Mon, 27 May 2024 00:16:04 -0400 Subject: [PATCH] sss --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 2dcbd91..6a14881 100644 --- a/src/index.ts +++ b/src/index.ts @@ -76,7 +76,7 @@ export type Inmutables = boolean | string | number | bigint; */ export type JsonObject = | { - [K: string | number]: boolean | string | number | bigint | JsonObject; + [K: string | number | symbol]: Inmutables | null | undefined | JsonObject; } | JsonObject[];