Simple monitor for displaying MIDI status for digital pianos.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

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