Simple monitor for displaying MIDI status for digital pianos.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

9 satır
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. }