| 25 | type Json = unknown; |
| 26 | |
| 27 | interface SourceEntry { |
| 28 | id: string; |
| 29 | property: string; |
| 30 | operator: string | null; |
| 31 | expr: Json; |
| 32 | var: string | null; |
| 33 | domain: Json; |
| 34 | point: Json; |
| 35 | condition: Json; |
| 36 | value: Json; |
| 37 | assumptions: Json; |
| 38 | } |
| 39 | |
| 40 | interface CompiledRecord { |
| 41 | id: string; |
nothing calls this directly
no outgoing calls
no test coverage detected