@rbxts/types 1.0.824 → 1.0.825
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/include/generated/None.d.ts +27 -0
- package/package.json +1 -1
|
@@ -43,6 +43,7 @@ interface Services {
|
|
|
43
43
|
ContextActionService: ContextActionService;
|
|
44
44
|
ControllerService: ControllerService;
|
|
45
45
|
ConversationalAIAcceptanceService: ConversationalAIAcceptanceService;
|
|
46
|
+
CoreGui: CoreGui;
|
|
46
47
|
CoreScriptDebuggingManagerHelper: CoreScriptDebuggingManagerHelper;
|
|
47
48
|
CreationDBService: CreationDBService;
|
|
48
49
|
CreatorStoreService: CreatorStoreService;
|
|
@@ -6506,6 +6507,32 @@ interface BasePlayerGui extends Instance {
|
|
|
6506
6507
|
*/
|
|
6507
6508
|
GetGuiObjectsAtPosition(this: BasePlayerGui, x: number, y: number): Array<GuiObject>;
|
|
6508
6509
|
}
|
|
6510
|
+
/**
|
|
6511
|
+
* The CoreGui is a service used to store Guis created in-game by Roblox for the core user interface found in every game (such as the game menu, the playerlist, the backpack, etc.). It can also be used by `Plugins` in Roblox Studio.
|
|
6512
|
+
*
|
|
6513
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
6514
|
+
*
|
|
6515
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CoreGui)
|
|
6516
|
+
*/
|
|
6517
|
+
interface CoreGui extends BasePlayerGui {
|
|
6518
|
+
/**
|
|
6519
|
+
* **DO NOT USE!**
|
|
6520
|
+
*
|
|
6521
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
6522
|
+
* @hidden
|
|
6523
|
+
* @deprecated
|
|
6524
|
+
*/
|
|
6525
|
+
readonly _nominal_CoreGui: unique symbol;
|
|
6526
|
+
/**
|
|
6527
|
+
* The current version of the CoreGui. Everytime the CoreGui is majorly changed, this number is increased.
|
|
6528
|
+
*
|
|
6529
|
+
* - **ThreadSafety**: ReadSafe
|
|
6530
|
+
* - **Tags**: NotReplicated
|
|
6531
|
+
*
|
|
6532
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CoreGui#Version)
|
|
6533
|
+
*/
|
|
6534
|
+
readonly Version: number;
|
|
6535
|
+
}
|
|
6509
6536
|
/**
|
|
6510
6537
|
* A container for a player's currently rendered `ScreenGuis`.
|
|
6511
6538
|
*
|