@openglobus/og 0.27.15 → 0.27.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -332,7 +332,7 @@ declare class Entity {
332
332
  * Removes current entity from its collection or layer.
333
333
  * @public
334
334
  */
335
- remove(): void;
335
+ remove(): this;
336
336
  /**
337
337
  * Sets the entity visibility.
338
338
  * @public
@@ -253,6 +253,7 @@ declare class EntityCollection {
253
253
  */
254
254
  belongs(entity: Entity): boolean;
255
255
  protected _removeRecursively(entity: Entity): void;
256
+ protected _removeEntity(entity: Entity): void;
256
257
  /**
257
258
  * Removes entity from this collection.
258
259
  * @public