mirror of
https://github.com/google/blockly.git
synced 2026-01-10 02:17:09 +01:00
Migrate core/interfaces/i_draggable.js named requires
This commit is contained in:
@@ -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() {};
|
||||
|
||||
Reference in New Issue
Block a user