constants/event-types/gyroscope.js

/**
 * @module EVENT_TYPES/GYROSCOPE
 */

/**
 * The gyroscope 'GYROSCOPE_ANALOG' event type.
 * @type {'gyroscopeanalog'}
 * @constant
 *
 * @memberof module:EVENT_TYPES/GYROSCOPE
 */
const GYROSCOPE_ANALOG = 'gyroscopeanalog';

/**
 * The gyroscope 'GYROSCOPE_DOWN' event type.
 * @type {'gyroscopedown'}
 * @constant
 *
 * @memberof module:EVENT_TYPES/GYROSCOPE
 */
const GYROSCOPE_DOWN = 'gyroscopedown';

/**
 * The gyroscope 'GYROSCOPE_UP' event type.
 * @type {'gyroscopeup'}
 * @constant
 *
 * @memberof module:EVENT_TYPES/GYROSCOPE
 */
const GYROSCOPE_UP = 'gyroscopeup';

export {

    GYROSCOPE_ANALOG,
    GYROSCOPE_DOWN,
    GYROSCOPE_UP
};