@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.
- package/out/appRegistry.d.ts +1 -3
- package/out/appRegistry.luau +0 -1
- package/package.json +1 -1
package/out/appRegistry.d.ts
CHANGED
|
@@ -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
|
|
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);
|
package/out/appRegistry.luau
CHANGED