Simple monitor for displaying MIDI status for digital pianos.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

9 line
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. }