From cd0a7ef77619e7b735da33f7ea420f873f0d39b3 Mon Sep 17 00:00:00 2001 From: Kouji Takao Date: Thu, 12 Oct 2023 16:59:51 +0900 Subject: [PATCH] chore: @type could not accept comment --- src/vm/extensions/block/index.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/vm/extensions/block/index.js b/src/vm/extensions/block/index.js index 9dfd80d..9a90058 100644 --- a/src/vm/extensions/block/index.js +++ b/src/vm/extensions/block/index.js @@ -436,7 +436,7 @@ class MbitMore { /** * The most recently received button events for each buttons. - * @type {Object} - Store of buttons which has events. + * @type {Object} * @private */ this.buttonEvents = {}; @@ -446,7 +446,7 @@ class MbitMore { /** * The most recently received gesture events. - * @type {Object } - Store of gesture ID and timestamp. + * @type {Object.} * @private */ this.gestureEvents = {}; @@ -454,14 +454,14 @@ class MbitMore { /** * The most recently received events for each pin. - * @type {Object} - Store of pins which has events. + * @type {Object} * @private */ this._pinEvents = {}; /** * The most recently received data from micro:bit. - * @type {Object} - Store of received data + * @type {Object} * @private */ this.receivedData = {}; @@ -2126,25 +2126,25 @@ class MbitMoreBlocks { /** * The previous timestamps of button events. - * @type {Object.>} button ID to object with event and timestamp. + * @type {Object.>} */ this.prevButtonEvents = {}; /** * The previous timestamps of gesture events. - * @type {Object.} key: event ID, value: timestamp. + * @type {Object.} */ this.prevGestureEvents = {}; /** * The previous timestamps of pin events. - * @type {Object.>} pin index to object with event and timestamp. + * @type {Object.>} */ this.prevPinEvents = {}; /** * The previous timestamps of messages. - * @type {Object.} pin index to object with event and timestamp. + * @type {Object.} */ this.prevReceivedData = {}; }