Last active 3 months ago
0
0
1
| 1 | interface MetricForm { |
| 2 | sport: string; |
| 3 | metrics: Metric[]; |
| 4 | name: string; |
| 5 | team: Team; |
| 6 | } |
| 7 | |
| 8 | interface Metric { |
| 9 | name: string; |
| 10 | type: "shortString" | "longString" | "numericSlider" | "butttons" | "timer"; |