mirror of
https://github.com/google/blockly.git
synced 2026-01-08 17:40:09 +01:00
Add namespace and alias annotations to jsdoc (#5550)
* Add annotations to files under core/events * Add annotations to files under core/interfaces * Add annotations to files under core/keyboard_nav * Add annotations to files under core/renderers * Add annotations to files under core/serialization * Add annotations to files under core/theme * Add annotations to files under core/toolbox * Add annotations to files under core/utils * Add annotations to files under core
This commit is contained in:
@@ -12,6 +12,10 @@
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* Text Area field.
|
||||
* @namespace Blockly.FieldMultilineInput
|
||||
*/
|
||||
goog.module('Blockly.FieldMultilineInput');
|
||||
|
||||
const Css = goog.require('Blockly.Css');
|
||||
@@ -42,6 +46,7 @@ const utils = goog.require('Blockly.utils');
|
||||
* for a list of properties this parameter supports.
|
||||
* @extends {FieldTextInput}
|
||||
* @constructor
|
||||
* @alias Blockly.FieldMultilineInput
|
||||
*/
|
||||
const FieldMultilineInput = function(opt_value, opt_validator, opt_config) {
|
||||
FieldMultilineInput.superClass_.constructor.call(
|
||||
|
||||
Reference in New Issue
Block a user