| 8 | export type JSONValue = PrimitiveJSONValue | JSONArray | JSONObject; |
| 9 | |
| 10 | export interface JSONArray extends Array<JSONValue> {} |
| 11 | |
| 12 | export interface JSONObject { |
| 13 | [key: string]: JSONValue; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…