| 20 | import { InvariantError } from 'ts-invariant'; |
| 21 | |
| 22 | export interface IdValue { |
| 23 | type: 'id'; |
| 24 | id: string; |
| 25 | generated: boolean; |
| 26 | typename: string | undefined; |
| 27 | } |
| 28 | |
| 29 | export interface JsonValue { |
| 30 | type: 'json'; |
nothing calls this directly
no outgoing calls
no test coverage detected