mirror of
https://github.com/google/blockly.git
synced 2026-01-10 02:17:09 +01:00
Migrate core/interfaces/i_copyable.js named requires
This commit is contained in:
@@ -14,12 +14,12 @@
|
||||
goog.module('Blockly.ICopyable');
|
||||
goog.module.declareLegacyNamespace();
|
||||
|
||||
goog.requireType('Blockly.ISelectable');
|
||||
goog.requireType('Blockly.WorkspaceSvg');
|
||||
const ISelectable = goog.requireType('Blockly.ISelectable');
|
||||
const WorkspaceSvg = goog.requireType('Blockly.WorkspaceSvg');
|
||||
|
||||
|
||||
/**
|
||||
* @extends {Blockly.ISelectable}
|
||||
* @extends {ISelectable}
|
||||
* @interface
|
||||
*/
|
||||
const ICopyable = function() {};
|
||||
@@ -34,7 +34,7 @@ ICopyable.prototype.toCopyData;
|
||||
* Copy Metadata.
|
||||
* @typedef {{
|
||||
* xml:!Element,
|
||||
* source:Blockly.WorkspaceSvg,
|
||||
* source:WorkspaceSvg,
|
||||
* typeCounts:?Object
|
||||
* }}
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user