@rbxts/types 1.0.825 → 1.0.826

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.
@@ -43,7 +43,6 @@ interface Services {
43
43
  ContextActionService: ContextActionService;
44
44
  ControllerService: ControllerService;
45
45
  ConversationalAIAcceptanceService: ConversationalAIAcceptanceService;
46
- CoreGui: CoreGui;
47
46
  CoreScriptDebuggingManagerHelper: CoreScriptDebuggingManagerHelper;
48
47
  CreationDBService: CreationDBService;
49
48
  CreatorStoreService: CreatorStoreService;
@@ -6507,32 +6506,6 @@ interface BasePlayerGui extends Instance {
6507
6506
  */
6508
6507
  GetGuiObjectsAtPosition(this: BasePlayerGui, x: number, y: number): Array<GuiObject>;
6509
6508
  }
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
- }
6536
6509
  /**
6537
6510
  * A container for a player's currently rendered `ScreenGuis`.
6538
6511
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.825",
3
+ "version": "1.0.826",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },