You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
569 B
19 lines
569 B
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.ContainerEvent = void 0;
|
|
var ContainerEvent;
|
|
(function (ContainerEvent) {
|
|
/**
|
|
* <zh/> 按下键盘时触发
|
|
*
|
|
* <en/> Triggered when the keyboard is pressed
|
|
*/
|
|
ContainerEvent["KEY_DOWN"] = "keydown";
|
|
/**
|
|
* <zh/> 抬起键盘时触发
|
|
*
|
|
* <en/> Triggered when the keyboard is lifted
|
|
*/
|
|
ContainerEvent["KEY_UP"] = "keyup";
|
|
})(ContainerEvent || (exports.ContainerEvent = ContainerEvent = {}));
|
|
//# sourceMappingURL=container.js.map
|