@rbxts/app-forge 0.7.2-prototype.35 → 0.7.2-prototype.36

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.
@@ -1,6 +1,5 @@
1
1
  import Vide from "@rbxts/vide";
2
2
  import type Types from "./types";
3
- import type AppForge from "./forge";
4
3
  export declare const AppRegistry: Map<string, Map<string, Types.AppRegistry.Static>>;
5
4
  export declare const AppSources: Map<string, Map<string, Vide.Source<boolean>>>;
6
5
  /**
@@ -13,9 +12,8 @@ export declare function App<N extends AppNames>(props: Types.AppRegistry.Props<N
13
12
  * Base class for all AppForge Apps.
14
13
  */
15
14
  export declare abstract class Args {
16
- readonly source: Vide.Source<boolean>;
17
15
  readonly props: Types.Props.Class;
18
- readonly forge: AppForge;
16
+ readonly source: Vide.Source<boolean>;
19
17
  readonly group: AppGroups;
20
18
  readonly name: AppNames;
21
19
  constructor(props: Types.Props.Main, name: AppNames, group?: AppGroups);
@@ -75,7 +75,6 @@ do
75
75
  function Args:constructor(props, name, group)
76
76
  local _binding = props
77
77
  local forge = _binding.forge
78
- self.forge = forge
79
78
  local _condition = group
80
79
  if not (_condition ~= "" and _condition) then
81
80
  _condition = "None"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/app-forge",
3
- "version": "0.7.2-prototype.35",
3
+ "version": "0.7.2-prototype.36",
4
4
  "description": "An App Manager for Vide",
5
5
  "main": "out/init.lua",
6
6
  "types": "out/index.d.ts",