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

13 行
245 B

  1. import messages from './messages.json'
  2. type MsgId = keyof typeof messages
  3. interface GetMessage {
  4. (msgId: string): string,
  5. }
  6. export const _: GetMessage = (msgId) => {
  7. const { [msgId as MsgId]: msgStr = msgId } = messages
  8. return msgStr
  9. }