mirror of
https://github.com/google/blockly.git
synced 2026-01-07 17:10:11 +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,11 @@
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* Object in charge of storing and updating a workspace theme
|
||||
* and UI components.
|
||||
* @namespace Blockly.ThemeManager
|
||||
*/
|
||||
goog.module('Blockly.ThemeManager');
|
||||
|
||||
/* eslint-disable-next-line no-unused-vars */
|
||||
@@ -30,6 +35,7 @@ const utils = goog.require('Blockly.utils');
|
||||
* @param {!Theme} theme The workspace theme.
|
||||
* @constructor
|
||||
* @package
|
||||
* @alias Blockly.ThemeManager
|
||||
*/
|
||||
const ThemeManager = function(workspace, theme) {
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user