Migrate core/interfaces/i_autohideable.js named requires

This commit is contained in:
kozbial
2021-07-16 11:08:54 -07:00
committed by Monica Kozbial
parent e43c82d9bb
commit 514f744a6f

View File

@@ -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() {};