Migrate core/interfaces/i_draggable.js named requires

This commit is contained in:
kozbial
2021-07-16 13:32:40 -07:00
committed by Monica Kozbial
parent 9806fc13f9
commit 1b15437e2f

View File

@@ -14,12 +14,12 @@
goog.module('Blockly.IDraggable');
goog.module.declareLegacyNamespace();
goog.require('Blockly.IDeletable');
const IDeletable = goog.require('Blockly.IDeletable');
/**
* The interface for an object that can be dragged.
* @extends {Blockly.IDeletable}
* @extends {IDeletable}
* @interface
*/
const IDraggable = function() {};