Simple monitor for displaying MIDI status for digital pianos.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

9 řádky
234 B

  1. export default interface Config extends Record<string, string | number | undefined>{
  2. startKey: number,
  3. endKey: number,
  4. scaleFactor: number,
  5. colorNaturalKey?: string,
  6. colorAccidentalKey?: string,
  7. colorHighlight?: string,
  8. }