@rbxts/app-forge 0.7.2-prototype.12 → 0.7.2-prototype.13

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.
package/out/renders.d.ts CHANGED
@@ -4,6 +4,6 @@ import Rules from "./ruleEngine";
4
4
  export default class Renders extends Rules {
5
5
  private __px;
6
6
  constructor();
7
- private Render;
7
+ Render: (props: Types.Props.Main) => void;
8
8
  protected initalize(props: Types.Props.Main, target?: GuiObject | Instance, root?: GuiObject | Instance): Vide.Node;
9
9
  }
package/out/renders.luau CHANGED
@@ -30,11 +30,11 @@ do
30
30
  function Renders:constructor()
31
31
  super.constructor(self)
32
32
  self.__px = false
33
- end
34
- function Renders:Render(props)
35
- print(props)
36
- print(AppRegistry)
37
- print(AppSources)
33
+ self.Render = function(props)
34
+ print(props)
35
+ print(AppRegistry)
36
+ print(AppSources)
37
+ end
38
38
  end
39
39
  function Renders:initalize(props, target, root)
40
40
  if not self.__px then
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/app-forge",
3
- "version": "0.7.2-prototype.12",
3
+ "version": "0.7.2-prototype.13",
4
4
  "description": "An App Manager for Vide",
5
5
  "main": "out/init.lua",
6
6
  "types": "out/index.d.ts",