@woosh/meep-engine 2.39.19 → 2.39.20

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/view/View.d.ts +4 -0
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "productName": "Meep",
6
6
  "description": "production-ready JavaScript game engine based on Entity Component System Architecture",
7
7
  "author": "Alexander Goldring",
8
- "version": "2.39.19",
8
+ "version": "2.39.20",
9
9
  "dependencies": {
10
10
  "gl-matrix": "3.4.3",
11
11
  "fast-levenshtein": "2.0.6",
package/view/View.d.ts CHANGED
@@ -17,4 +17,8 @@ export default class View<T extends Element = HTMLElement> {
17
17
  public link(): void
18
18
 
19
19
  public unlink(): void
20
+
21
+ addChild(v: View): void
22
+
23
+ removeChild(v: View): void
20
24
  }