| 3 | type VariableList = Record<string, VariableMetadata>; |
| 4 | |
| 5 | interface AxisRegistryItem { |
| 6 | name: string; |
| 7 | tag: string; |
| 8 | description: string; |
| 9 | min: number; |
| 10 | max: number; |
| 11 | default: number; |
| 12 | precision: number; |
| 13 | } |
| 14 | |
| 15 | type AxisRegistryDownload = AxisRegistryItem[]; |
| 16 | type AxisRegistry = Record<string, Omit<AxisRegistryItem, 'tag'>>; |
nothing calls this directly
no outgoing calls
no test coverage detected