diff --git a/core/interfaces/i_autohideable.js b/core/interfaces/i_autohideable.js index 7b1613405..bf11adc01 100644 --- a/core/interfaces/i_autohideable.js +++ b/core/interfaces/i_autohideable.js @@ -15,12 +15,12 @@ goog.module('Blockly.IAutoHideable'); goog.module.declareLegacyNamespace(); -goog.require('Blockly.IComponent'); +const IComponent = goog.require('Blockly.IComponent'); /** * Interface for a component that can be automatically hidden. - * @extends {Blockly.IComponent} + * @extends {IComponent} * @interface */ const IAutoHideable = function() {};