mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-24 15:02:52 -05:00
Add comment to jsdoc typedef where it belongs.
This commit is contained in:
parent
50708c15e4
commit
c2bb1e3123
1 changed files with 3 additions and 1 deletions
|
@ -11,6 +11,8 @@ const uid = require('../util/uid');
|
||||||
* See _renderBubble for explanation of this optimization.
|
* See _renderBubble for explanation of this optimization.
|
||||||
* @property {string} text - the text of the bubble.
|
* @property {string} text - the text of the bubble.
|
||||||
* @property {string} type - the type of the bubble, "say" or "think"
|
* @property {string} type - the type of the bubble, "say" or "think"
|
||||||
|
* @property {?string} usageId - ID indicating the most recent usage of the say/think bubble.
|
||||||
|
* Used for comparison when determining whether to clear a say/think bubble.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
class Scratch3LooksBlocks {
|
class Scratch3LooksBlocks {
|
||||||
|
@ -46,7 +48,7 @@ class Scratch3LooksBlocks {
|
||||||
skinId: null,
|
skinId: null,
|
||||||
text: '',
|
text: '',
|
||||||
type: 'say',
|
type: 'say',
|
||||||
usageId: null // ID for hiding a timed say/think block.
|
usageId: null
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue