refactor(ui): cleanup type definitions
authorJérôme Benoit <jerome.benoit@sap.com>
Thu, 7 Mar 2024 16:27:09 +0000 (17:27 +0100)
committerJérôme Benoit <jerome.benoit@sap.com>
Thu, 7 Mar 2024 16:27:09 +0000 (17:27 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
ui/web/src/types/JsonType.ts

index 3a2765f6120552337b53fd1499d9b2a2b35214b4..8f597383a4bba8d98e727288dd987a579c1c0328 100644 (file)
@@ -1,3 +1,3 @@
-export type JsonType = JsonPrimitive | JsonType[] | JsonObject
+type JsonPrimitive = string | number | boolean | Date | null
 export type JsonObject = { [key in string]?: JsonType }
-export type JsonPrimitive = string | number | boolean | Date | null
+export type JsonType = JsonPrimitive | JsonType[] | JsonObject