16 lines
223 B
TypeScript
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;
|