From 7d71b804a295a48e6eb2ec703d1cb36ed90515fb Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Thu, 25 Jul 2024 17:46:08 +1000 Subject: [PATCH] chore(jsonc): tweak `JsonValue` export (#5546) --- jsonc/parse.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jsonc/parse.ts b/jsonc/parse.ts index 764ac69ece5d..8f42e7583a9d 100644 --- a/jsonc/parse.ts +++ b/jsonc/parse.ts @@ -2,7 +2,7 @@ // This module is browser compatible. import type { JsonValue } from "@std/json/types"; -export type { JsonValue } from "@std/json/types"; +export type { JsonValue }; /** * Converts a JSON with Comments (JSONC) string into an object.