diff --git a/packages/types/index.d.ts b/packages/types/index.d.ts index 39a358d8..83a396f3 100644 --- a/packages/types/index.d.ts +++ b/packages/types/index.d.ts @@ -1,9 +1,9 @@ // Type definitions for automatisch -export type IJSONValue = string | number | boolean | JSONObject | JSONArray; -export type IJSONArray = Array; +export type IJSONValue = string | number | boolean | IJSONObject | IJSONArray; +export type IJSONArray = Array; export interface IJSONObject { - [x: string]: JSONValue; + [x: string]: IJSONValue; } export interface IConnection {