Skip to content

Commit

Permalink
fix(core): JSONObject interface definition should not reference the s…
Browse files Browse the repository at this point in the history
…tatic `JSON` class
  • Loading branch information
jan-molak committed Jan 29, 2017
1 parent 532fb86 commit ed4fabb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/serenity/io/json.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export interface JSONObject {
[x: string]: string | number | boolean | Date | JSON | JSONArray;
[x: string]: string | number | boolean | Date | JSONObject | JSONArray;
}

export interface JSONArray extends Array<string | number | boolean | Date | JSONObject | JSONArray> { }

0 comments on commit ed4fabb

Please sign in to comment.