fix: component id should be on the prototype (#6104)

This commit is contained in:
Rachel Fenichel
2022-04-22 11:22:35 -07:00
committed by GitHub
parent 619ee66b23
commit 172a8ce212
4 changed files with 26 additions and 1 deletions

View File

@@ -63,4 +63,9 @@ IBlockDragger.prototype.endDrag;
*/
IBlockDragger.prototype.getInsertionMarkers;
/**
* Sever all links from this object and do any necessary cleanup.
*/
IBlockDragger.prototype.dispose;
exports.IBlockDragger = IBlockDragger;

View File

@@ -32,6 +32,6 @@ const IComponent = function() {};
* ComponentManager.
* @type {string}
*/
IComponent.id;
IComponent.prototype.id;
exports.IComponent = IComponent;