constants/eventcodes/pointer.js

/**
 * @module EVENTCODES/POINTER
 */

/**
 * The pointer 'POINT' event code.
 * @type {'Point'}
 * @constant
 *
 * @memberof module:EVENTCODES/POINTER
 */
const POINT = 'Point';

/**
 * The pointer 'POSITION' event code.
 * @type {'Position'}
 * @constant
 *
 * @memberof module:EVENTCODES/POINTER
 */
const POSITION = 'Position';

/**
 * The pointer 'POSITION_X' event code.
 * @type {'PositionX'}
 * @constant
 *
 * @memberof module:EVENTCODES/POINTER
 */
const POSITION_X = 'PositionX';

/**
 * The pointer 'POSITION_Y' event code.
 * @type {'PositionY'}
 * @constant
 *
 * @memberof module:EVENTCODES/POINTER
 */
const POSITION_Y = 'PositionY';

export {

    POINT,
    POSITION,
    POSITION_X,
    POSITION_Y
};