Skip to content

Commit

Permalink
Format.
Browse files Browse the repository at this point in the history
  • Loading branch information
rictic committed Oct 14, 2024
1 parent 14b35fc commit c489896
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/parse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,13 @@ export function parse(
return parser.parse();
}

export type JsonValue = null | boolean | number | string | JsonValue[] | JsonObject;
export type JsonValue =
| null
| boolean
| number
| string
| JsonValue[]
| JsonObject;
export type JsonObject = {[key: string]: JsonValue};

const enum StateEnum {
Expand Down

0 comments on commit c489896

Please sign in to comment.