From 514f744a6f348f14f1cce37d72356b2eeb062885 Mon Sep 17 00:00:00 2001 From: kozbial Date: Fri, 16 Jul 2021 11:08:54 -0700 Subject: [PATCH] Migrate core/interfaces/i_autohideable.js named requires --- core/interfaces/i_autohideable.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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() {};