constants/event-codes/midi/midi.js

/**
 * @module EVENT_CODES/MIDI
 */

/**
 * The MIDI 'MESSAGE' event code.
 * @type {'Message'}
 * @constant
 *
 * @memberof module:EVENT_CODES/MIDI
 */
const MESSAGE = 'Message';

export {

    MESSAGE
};