| 40 | } |
| 41 | |
| 42 | export interface AxisRegistry { |
| 43 | name: string; |
| 44 | tag: string; |
| 45 | description: string; |
| 46 | default: number; |
| 47 | min: number; |
| 48 | max: number; |
| 49 | precision: number; |
| 50 | } |
| 51 | |
| 52 | export type AxisRegistryAll = Record<string, Omit<AxisRegistry, 'tag'>>; |
| 53 |
nothing calls this directly
no outgoing calls
no test coverage detected