constants/eventcodes/keyboard.azertyeditors.js

/**
 * The AZERTY-based keyboard 'DELETE' event code.
 * @type {'Delete'}
 * @constant
 *
 * @memberof module:EVENTCODES/KEYBOARDAZERTY
 */
const DELETE = 'Delete';

/**
 * The AZERTY-based keyboard 'ENTER' event code.
 * @type {'Enter'}
 * @constant
 *
 * @memberof module:EVENTCODES/KEYBOARDAZERTY
 */
const ENTER = 'Enter';

export {

    DELETE,
    ENTER
};