Home Reference Source

src/events/keypress.js

import KeyEvent from './keyevent';

export default class KeyPress extends KeyEvent {
    constructor() {
        super('keypress');
    }

}