Files
Chromacase/front/models/Skill.ts
2023-06-17 07:01:23 +01:00

16 lines
223 B
TypeScript

type Skill =
| 'rhythm'
| 'two-hands'
| 'combos'
| 'arpeggio'
| 'distance'
| 'left-hand'
| 'right-hand'
| 'lead-head-change'
| 'chord-complexity'
| 'chord-timing'
| 'pedal'
| 'precision';
export default Skill;