Move @package annotation to export for core/marker_manager.js

This commit is contained in:
Aaron Dodson
2021-07-26 09:50:47 -07:00
parent 126e02927f
commit a663b1225b

View File

@@ -25,7 +25,6 @@ const WorkspaceSvg = goog.requireType('Blockly.WorkspaceSvg');
* Class to manage the multiple markers and the cursor on a workspace.
* @param {!WorkspaceSvg} workspace The workspace for the marker manager.
* @constructor
* @package
*/
const MarkerManager = function(workspace) {
/**
@@ -195,4 +194,5 @@ MarkerManager.prototype.dispose = function() {
}
};
/** @package */
exports = MarkerManager;