constants/event-types/midi.js

/**
 * @module EVENT_TYPES/MIDI
 */

/**
 * The MIDI 'MIDI_INPUT_ANALOG' event type.
 * @type {'midiinputanalog'}
 * @constant
 *
 * @memberof module:EVENT_TYPES/MIDI
 */
const MIDI_INPUT_ANALOG = 'midiinputanalog';

/**
 * The MIDI 'MIDI_INPUT_DOWN' event type.
 * @type {'midiinputdown'}
 * @constant
 *
 * @memberof module:EVENT_TYPES/MIDI
 */
const MIDI_INPUT_DOWN = 'midiinputdown';

/**
 * The MIDI 'MIDI_INPUT_UP' event type.
 * @type {'midiinputup'}
 * @constant
 *
 * @memberof module:EVENT_TYPES/MIDI
 */
const MIDI_INPUT_UP = 'midiinputup';

/**
 * The MIDI 'MIDI_MESSAGE' event type.
 * @type {'midimessage'}
 * @constant
 *
 * @memberof module:EVENT_TYPES/MIDI
 */
const MIDI_MESSAGE = 'midimessage';

/**
 * The MIDI 'MIDI_OUTPUT' event type.
 * @type {'midioutput'}
 * @constant
 *
 * @memberof module:EVENT_TYPES/MIDI
 */
const MIDI_OUTPUT = 'midioutput';

export {

    MIDI_INPUT_ANALOG,
    MIDI_INPUT_DOWN,
    MIDI_INPUT_UP,
    MIDI_MESSAGE,
    MIDI_OUTPUT
};