| 34 | export interface SuperJSONArray extends Array<SuperJSONValue> {} |
| 35 | |
| 36 | export interface SuperJSONObject { |
| 37 | [key: string]: SuperJSONValue; |
| 38 | } |
| 39 | |
| 40 | export interface SuperJSONResult { |
| 41 | json: JSONValue; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…