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[];