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