@rbxts/types 1.0.913 → 1.0.914

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.
@@ -145,9 +145,11 @@ interface Services {
145
145
  PlayerHydrationService: PlayerHydrationService;
146
146
  Players: Players;
147
147
  PlayerViewService: PlayerViewService;
148
+ PluginConnectionService: PluginConnectionService;
148
149
  PluginManagementService: PluginManagementService;
149
150
  PluginPolicyService: PluginPolicyService;
150
151
  PolicyService: PolicyService;
152
+ ProceduralBehaviorSchedulerService: ProceduralBehaviorSchedulerService;
151
153
  ProcessInstancePhysicsService: ProcessInstancePhysicsService;
152
154
  ProximityPromptService: ProximityPromptService;
153
155
  PublishService: PublishService;
@@ -380,6 +382,7 @@ interface CreatableInstances {
380
382
  Folder: Folder;
381
383
  ForceField: ForceField;
382
384
  Frame: Frame;
385
+ GeneratedFolder: GeneratedFolder;
383
386
  GetTextBoundsParams: GetTextBoundsParams;
384
387
  Glue: Glue;
385
388
  GroundController: GroundController;
@@ -445,9 +448,11 @@ interface CreatableInstances {
445
448
  PointLight: PointLight;
446
449
  Pose: Pose;
447
450
  PrismaticConstraint: PrismaticConstraint;
451
+ ProceduralModel: ProceduralModel;
448
452
  ProximityPrompt: ProximityPrompt;
449
453
  PyramidHandleAdornment: PyramidHandleAdornment;
450
454
  RayValue: RayValue;
455
+ RealtimeMedia: RealtimeMedia;
451
456
  RelativeGui: RelativeGui;
452
457
  RemoteEvent: RemoteEvent;
453
458
  RemoteFunction: RemoteFunction;
@@ -747,6 +752,7 @@ interface Objects extends Instances {
747
752
  MLSession: MLSession;
748
753
  Object: RBXObject;
749
754
  OutputLink: OutputLink;
755
+ PluginConnection: PluginConnection;
750
756
  ScreenshotCapture: ScreenshotCapture;
751
757
  TerrainIterateOperation: TerrainIterateOperation;
752
758
  TerrainModifyOperation: TerrainModifyOperation;
@@ -754,6 +760,7 @@ interface Objects extends Instances {
754
760
  TerrainWriteOperation: TerrainWriteOperation;
755
761
  VideoCapture: VideoCapture;
756
762
  VideoSampler: VideoSampler;
763
+ VirtualInput: VirtualInput;
757
764
  VoxelBuffer: VoxelBuffer;
758
765
  WebStreamClient: WebStreamClient;
759
766
  }
@@ -4313,10 +4320,16 @@ interface AssetService extends Instance {
4313
4320
  */
4314
4321
  CreateAssetVersionAsync(this: AssetService, object: RBXObject, assetType: CastsToEnum<Enum.AssetType>, assetId: number, requestParameters?: object): unknown;
4315
4322
  /**
4323
+ * Creates ephemeral, `DataModel`-scoped content from the provided content input.
4324
+ *
4316
4325
  * - **ThreadSafety**: Unsafe
4317
4326
  * - **Tags**: Yields
4318
4327
  *
4319
4328
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetService#CreateDataModelContentAsync)
4329
+ * @param this A non-replicated service that handles asset-related queries to the Roblox web API.
4330
+ * @param content Reference to the input content. Currently, this only supports `Content` wrapping a `EditableMesh` or `EditableImage`.
4331
+ * @param options Optional dictionary containing configuration controls for the created `DataModel` content. Currently no controls are surfaced and this parameter exists for future functionality.
4332
+ * @returns A tuple containing an `CreateContentResult` indicating the success or failure of the request, and the resulting `DataModel`-scoped `Opaque` `Content`.
4320
4333
  */
4321
4334
  CreateDataModelContentAsync(this: AssetService, content: Content, options?: object): unknown;
4322
4335
  /**
@@ -4469,7 +4482,9 @@ interface AssetService extends Instance {
4469
4482
  * - `Items` — Array of items in the bundle, each with details represented through the following keys:
4470
4483
  * - `Id` — Item ID
4471
4484
  * - `Name` — Item name
4472
- * - `Type` — Item type such as `"Asset"` .
4485
+ * - `Type` — Item type such as `"Asset"`
4486
+ * - `AssetType` — String representing the `AvatarAssetType`
4487
+ * - `SupportsHeadShapes` — Whether the asset supports head shape swapping. Only present if `AssetType` is `"DynamicHead"`.
4473
4488
  */
4474
4489
  GetBundleDetailsAsync(this: AssetService, bundleId: number): BundleInfo;
4475
4490
  /**
@@ -6605,7 +6620,7 @@ interface AudioPlayer extends Instance {
6605
6620
  */
6606
6621
  AutoPlay: boolean;
6607
6622
  /**
6608
- * Denotes whether this `AudioPlayer` is currently playing.
6623
+ * Denotes whether this `AudioPlayer` is currently playing or planning to play.
6609
6624
  *
6610
6625
  * - **ThreadSafety**: ReadSafe
6611
6626
  *
@@ -6722,6 +6737,8 @@ interface AudioPlayer extends Instance {
6722
6737
  *
6723
6738
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPlayer#Play)
6724
6739
  * @param this Used to play audio assets.
6740
+ * @param atTime A specific time, based on `GetMixerTime`, that this `AudioPlayer` should begin playing at.
6741
+ * @returns If `atTime` was provided, a unique ID, which can be passed to `Cancel()`.
6725
6742
  */
6726
6743
  Play(this: AudioPlayer, atTime?: number): number | undefined;
6727
6744
  /**
@@ -6731,6 +6748,8 @@ interface AudioPlayer extends Instance {
6731
6748
  *
6732
6749
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPlayer#Stop)
6733
6750
  * @param this Used to play audio assets.
6751
+ * @param atTime A specific time, based on `GetMixerTime`, that this `AudioPlayer` should stop playing at.
6752
+ * @returns If `atTime` was provided, a unique ID, which can be passed to `Cancel()`.
6734
6753
  */
6735
6754
  Stop(this: AudioPlayer, atTime?: number): number | undefined;
6736
6755
  /**
@@ -8224,12 +8243,15 @@ interface AvatarEditorService extends Instance {
8224
8243
  */
8225
8244
  ConformToAvatarRules(this: AvatarEditorService, humanoidDescription: HumanoidDescription): HumanoidDescription;
8226
8245
  /**
8246
+ * Returns a copy of the given `HumanoidDescription` that conforms to the platform Avatar rules.
8247
+ *
8227
8248
  * - **ThreadSafety**: Unsafe
8228
8249
  * - **Tags**: Yields
8229
8250
  *
8230
8251
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarEditorService#ConformToAvatarRulesAsync)
8231
8252
  * @param this A service to support developer Avatar Editors.
8232
- * @param humanoidDescription
8253
+ * @param humanoidDescription The `HumanoidDescription` to conform.
8254
+ * @returns A new `HumanoidDescription` that conforms to the platform Avatar rules.
8233
8255
  */
8234
8256
  ConformToAvatarRulesAsync(this: AvatarEditorService, humanoidDescription: HumanoidDescription): HumanoidDescription;
8235
8257
  /**
@@ -8321,10 +8343,14 @@ interface AvatarEditorService extends Instance {
8321
8343
  */
8322
8344
  GetFavoriteAsync(this: AvatarEditorService, itemId: number, itemType: CastsToEnum<Enum.AvatarItemType>): boolean;
8323
8345
  /**
8346
+ * Returns an array of head shape names that the `Players.LocalPlayer` owns.
8347
+ *
8324
8348
  * - **ThreadSafety**: Unsafe
8325
8349
  * - **Tags**: Yields
8326
8350
  *
8327
8351
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarEditorService#GetHeadShapesAsync)
8352
+ * @param this A service to support developer Avatar Editors.
8353
+ * @returns An array of strings, each identifying a head shape owned by `Players.LocalPlayer`. Possible values include: `"RobloxClassic"`, `"Blockhead"`, `"Cheeks"`, `"Chiseled"`, `"CoolThing"`, `"EraserHead"`, `"FatHead"`, `"FlatTop"`, `"GoldenKorbloxGeneral"`, `"GoldenMrRobot"`, `"KnightOfChivalry"`, `"KnightOfCourage"`, `"ManHead"`, `"MercilessNinja"`, `"Narrow"`, `"Paragon"`, `"Peabrain"`, `"Perfection"`, `"Roll"`, `"Roundy"`, `"RoxBox"`, `"TheEngineer"`, `"Trim"`, `"WomanHead"`.
8328
8354
  */
8329
8355
  GetHeadShapesAsync(this: AvatarEditorService): Array<unknown>;
8330
8356
  /**
@@ -8702,7 +8728,7 @@ interface BadgeService extends Instance {
8702
8728
  * @param this Provides information on badges and awards them.
8703
8729
  * @param userId The `UserId` of the player to check for ownership of the specified badges.
8704
8730
  * @param badgeIds The list of IDs of the badges to check ownership of. Maximum length of 10.
8705
- * @returns The list of badge IDs the given user owns out of the provided badge IDs. Empty if none of the provided badges are owned by the given user. Not guaranteed to be in the same order as the input list.
8731
+ * @returns The list of badge IDs the given user owns out of the provided badge IDs. Empty if none of the provided badges are owned by the given user. Not guaranteed to be in the same order as the input list. Some badge IDs may be omitted if the user with the target `userId` has not recently been in the server and the badge IDs are not associated with the requesting experience.
8706
8732
  */
8707
8733
  CheckUserBadgesAsync(this: BadgeService, userId: number, badgeIds: Array<unknown>): Array<unknown>;
8708
8734
  /**
@@ -9271,6 +9297,12 @@ interface RootImportData extends BaseImportData {
9271
9297
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RootImportData#MergeMeshes)
9272
9298
  */
9273
9299
  MergeMeshes: boolean;
9300
+ /**
9301
+ * - **ThreadSafety**: ReadSafe
9302
+ *
9303
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RootImportData#PhysicalConstraintType)
9304
+ */
9305
+ PhysicalConstraintType: Enum.PhysicalConstraintType;
9274
9306
  /**
9275
9307
  * - **ThreadSafety**: ReadSafe
9276
9308
  * - **Tags**: NotReplicated
@@ -12729,8 +12761,6 @@ interface AnimationConstraint extends Constraint {
12729
12761
  */
12730
12762
  readonly _nominal_AnimationConstraint: unique symbol;
12731
12763
  /**
12732
- * **Deprecated:**
12733
- *
12734
12764
  * - **ThreadSafety**: ReadSafe
12735
12765
  * - **Tags**: Hidden, NotReplicated
12736
12766
  *
@@ -12740,8 +12770,6 @@ interface AnimationConstraint extends Constraint {
12740
12770
  */
12741
12771
  readonly C0: CFrame;
12742
12772
  /**
12743
- * **Deprecated:**
12744
- *
12745
12773
  * - **ThreadSafety**: ReadSafe
12746
12774
  * - **Tags**: Hidden, NotReplicated
12747
12775
  *
@@ -12775,8 +12803,6 @@ interface AnimationConstraint extends Constraint {
12775
12803
  */
12776
12804
  MaxTorque: number;
12777
12805
  /**
12778
- * **Deprecated:**
12779
- *
12780
12806
  * - **ThreadSafety**: ReadSafe
12781
12807
  * - **Tags**: Hidden, NotReplicated
12782
12808
  *
@@ -12786,8 +12812,6 @@ interface AnimationConstraint extends Constraint {
12786
12812
  */
12787
12813
  readonly Part0: BasePart | undefined;
12788
12814
  /**
12789
- * **Deprecated:**
12790
- *
12791
12815
  * - **ThreadSafety**: ReadSafe
12792
12816
  * - **Tags**: Hidden, NotReplicated
12793
12817
  *
@@ -17528,6 +17552,25 @@ interface Folder extends Instance {
17528
17552
  */
17529
17553
  readonly _nominal_Folder: unique symbol;
17530
17554
  }
17555
+ /**
17556
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GeneratedFolder)
17557
+ */
17558
+ interface GeneratedFolder extends Folder {
17559
+ /**
17560
+ * **DO NOT USE!**
17561
+ *
17562
+ * This field exists to force TypeScript to recognize this as a nominal type
17563
+ * @hidden
17564
+ * @deprecated
17565
+ */
17566
+ readonly _nominal_GeneratedFolder: unique symbol;
17567
+ /**
17568
+ * - **ThreadSafety**: Unsafe
17569
+ *
17570
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GeneratedFolder#SetPrimaryPart)
17571
+ */
17572
+ SetPrimaryPart(this: GeneratedFolder, part: BasePart): void;
17573
+ }
17531
17574
  /**
17532
17575
  * Protects a `Humanoid` from taking damage dealt through the `Humanoid:TakeDamage()` method and protects `BaseParts` from having their joints broken due to an `Explosion`.
17533
17576
  *
@@ -24345,6 +24388,8 @@ interface HumanoidDescription extends Instance {
24345
24388
  */
24346
24389
  ShouldersAccessory: string;
24347
24390
  /**
24391
+ * When `true`, disables facial animations on a Dynamic Head, displaying a static mood pose instead. Defaults to `false`.
24392
+ *
24348
24393
  * - **ThreadSafety**: ReadSafe
24349
24394
  *
24350
24395
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidDescription#StaticFacialAnimation)
@@ -28081,6 +28126,8 @@ interface MLService extends Instance {
28081
28126
  CreateSessionAsync(this: MLService, assetId: string): MLSession;
28082
28127
  }
28083
28128
  /**
28129
+ * Describes the appearance of a makeup item for the `HumanoidDescription`.
28130
+ *
28084
28131
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription)
28085
28132
  */
28086
28133
  interface MakeupDescription extends Instance {
@@ -28093,34 +28140,44 @@ interface MakeupDescription extends Instance {
28093
28140
  */
28094
28141
  readonly _nominal_MakeupDescription: unique symbol;
28095
28142
  /**
28143
+ * The asset ID that should be applied when applying this `MakeupDescription`.
28144
+ *
28096
28145
  * - **ThreadSafety**: ReadSafe
28097
28146
  *
28098
28147
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription#AssetId)
28099
28148
  */
28100
28149
  AssetId: number;
28101
28150
  /**
28151
+ * A reference to the `Instance` that should be used when applying this `MakeupDescription`.
28152
+ *
28102
28153
  * - **ThreadSafety**: ReadSafe
28103
28154
  *
28104
28155
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription#Instance)
28105
28156
  */
28106
28157
  Instance: Instance | undefined;
28107
28158
  /**
28159
+ * The `MakeupType` of the makeup item referred to by this description.
28160
+ *
28108
28161
  * - **ThreadSafety**: ReadSafe
28109
28162
  *
28110
28163
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription#MakeupType)
28111
28164
  */
28112
28165
  MakeupType: Enum.MakeupType;
28113
28166
  /**
28167
+ * The layering sort order for the makeup item.
28168
+ *
28114
28169
  * - **ThreadSafety**: ReadSafe
28115
28170
  *
28116
28171
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription#Order)
28117
28172
  */
28118
28173
  Order: number;
28119
28174
  /**
28175
+ * Returns the applied makeup `Instance`.
28176
+ *
28120
28177
  * - **ThreadSafety**: Unsafe
28121
28178
  *
28122
28179
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription#GetAppliedInstance)
28123
- * @param this
28180
+ * @param this Describes the appearance of a makeup item for the `HumanoidDescription`.
28124
28181
  */
28125
28182
  GetAppliedInstance(this: MakeupDescription): Instance | undefined;
28126
28183
  }
@@ -32915,6 +32972,51 @@ interface Tool extends BackpackItem {
32915
32972
  */
32916
32973
  readonly Unequipped: RBXScriptSignal<() => void>;
32917
32974
  }
32975
+ /**
32976
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ProceduralModel)
32977
+ */
32978
+ interface ProceduralModel extends Model {
32979
+ /**
32980
+ * **DO NOT USE!**
32981
+ *
32982
+ * This field exists to force TypeScript to recognize this as a nominal type
32983
+ * @hidden
32984
+ * @deprecated
32985
+ */
32986
+ readonly _nominal_ProceduralModel: unique symbol;
32987
+ /**
32988
+ * - **ThreadSafety**: ReadSafe
32989
+ * - **Tags**: NotReplicated
32990
+ *
32991
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ProceduralModel#GenerationError)
32992
+ */
32993
+ readonly GenerationError: string;
32994
+ /**
32995
+ * - **ThreadSafety**: ReadSafe
32996
+ *
32997
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ProceduralModel#Generator)
32998
+ */
32999
+ Generator: ModuleScript | undefined;
33000
+ /**
33001
+ * - **ThreadSafety**: ReadSafe
33002
+ *
33003
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ProceduralModel#Size)
33004
+ */
33005
+ Size: Vector3;
33006
+ /**
33007
+ * - **ThreadSafety**: Unsafe
33008
+ *
33009
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ProceduralModel#ForceGeneration)
33010
+ */
33011
+ ForceGeneration(this: ProceduralModel): boolean;
33012
+ /**
33013
+ * - **ThreadSafety**: Unsafe
33014
+ * - **Tags**: Yields
33015
+ *
33016
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ProceduralModel#WaitForGenerationAsync)
33017
+ */
33018
+ WaitForGenerationAsync(this: ProceduralModel): boolean;
33019
+ }
32918
33020
  /**
32919
33021
  * Base class for handling physics simulation and 3D spatial queries.
32920
33022
  *
@@ -36467,6 +36569,21 @@ interface PluginCapabilities extends Instance {
36467
36569
  */
36468
36570
  readonly _nominal_PluginCapabilities: unique symbol;
36469
36571
  }
36572
+ /**
36573
+ * - **Tags**: NotCreatable, Service, NotReplicated
36574
+ *
36575
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PluginConnectionService)
36576
+ */
36577
+ interface PluginConnectionService extends Instance {
36578
+ /**
36579
+ * **DO NOT USE!**
36580
+ *
36581
+ * This field exists to force TypeScript to recognize this as a nominal type
36582
+ * @hidden
36583
+ * @deprecated
36584
+ */
36585
+ readonly _nominal_PluginConnectionService: unique symbol;
36586
+ }
36470
36587
  /**
36471
36588
  * - **Tags**: NotCreatable, Service, NotReplicated
36472
36589
  *
@@ -36915,6 +37032,21 @@ interface SunRaysEffect extends PostEffect {
36915
37032
  */
36916
37033
  Spread: number;
36917
37034
  }
37035
+ /**
37036
+ * - **Tags**: NotCreatable, Service, NotReplicated
37037
+ *
37038
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ProceduralBehaviorSchedulerService)
37039
+ */
37040
+ interface ProceduralBehaviorSchedulerService extends Instance {
37041
+ /**
37042
+ * **DO NOT USE!**
37043
+ *
37044
+ * This field exists to force TypeScript to recognize this as a nominal type
37045
+ * @hidden
37046
+ * @deprecated
37047
+ */
37048
+ readonly _nominal_ProceduralBehaviorSchedulerService: unique symbol;
37049
+ }
36918
37050
  /**
36919
37051
  * - **Tags**: NotCreatable, Service
36920
37052
  *
@@ -37317,6 +37449,75 @@ interface RTAnimationTracker extends Instance {
37317
37449
  */
37318
37450
  readonly TrackerPrompt: RBXScriptSignal<(prompt: Enum.TrackerPromptEvent) => void>;
37319
37451
  }
37452
+ /**
37453
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RealtimeMedia)
37454
+ */
37455
+ interface RealtimeMedia extends Instance {
37456
+ /**
37457
+ * **DO NOT USE!**
37458
+ *
37459
+ * This field exists to force TypeScript to recognize this as a nominal type
37460
+ * @hidden
37461
+ * @deprecated
37462
+ */
37463
+ readonly _nominal_RealtimeMedia: unique symbol;
37464
+ /**
37465
+ * - **ThreadSafety**: ReadSafe
37466
+ * - **Tags**: NotReplicated
37467
+ *
37468
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RealtimeMedia#IsConnected)
37469
+ */
37470
+ readonly IsConnected: boolean;
37471
+ /**
37472
+ * - **ThreadSafety**: Unsafe
37473
+ *
37474
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RealtimeMedia#Disconnect)
37475
+ */
37476
+ Disconnect(this: RealtimeMedia): void;
37477
+ /**
37478
+ * - **ThreadSafety**: Unsafe
37479
+ *
37480
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RealtimeMedia#GetConnectedWires)
37481
+ */
37482
+ GetConnectedWires(this: RealtimeMedia, pin: string): Array<Instance>;
37483
+ /**
37484
+ * - **ThreadSafety**: Unsafe
37485
+ *
37486
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RealtimeMedia#GetInputPins)
37487
+ */
37488
+ GetInputPins(this: RealtimeMedia): Array<unknown>;
37489
+ /**
37490
+ * - **ThreadSafety**: Unsafe
37491
+ *
37492
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RealtimeMedia#GetOutputPins)
37493
+ */
37494
+ GetOutputPins(this: RealtimeMedia): Array<unknown>;
37495
+ /**
37496
+ * - **ThreadSafety**: Unsafe
37497
+ *
37498
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RealtimeMedia#SendMessage)
37499
+ */
37500
+ SendMessage(this: RealtimeMedia, message: string, binary: boolean): boolean;
37501
+ /**
37502
+ * - **ThreadSafety**: Unsafe
37503
+ * - **Tags**: Yields
37504
+ *
37505
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RealtimeMedia#ConnectAsync)
37506
+ */
37507
+ ConnectAsync(this: RealtimeMedia, serverUrl: string, connectParams?: object): boolean;
37508
+ /**
37509
+ * - **ThreadSafety**: Unsafe
37510
+ *
37511
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RealtimeMedia#OnMessage)
37512
+ */
37513
+ readonly OnMessage: RBXScriptSignal<(message: string, binary: boolean) => void>;
37514
+ /**
37515
+ * - **ThreadSafety**: Unsafe
37516
+ *
37517
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RealtimeMedia#WiringChanged)
37518
+ */
37519
+ readonly WiringChanged: RBXScriptSignal<(connected: boolean, pin: string, wire: Wire, instance: Instance) => void>;
37520
+ }
37320
37521
  /**
37321
37522
  * A service that provides an interface for you to manage and display personalized content recommendations.
37322
37523
  *
@@ -38440,6 +38641,18 @@ interface ScriptContext extends Instance {
38440
38641
  * @deprecated
38441
38642
  */
38442
38643
  readonly _nominal_ScriptContext: unique symbol;
38644
+ /**
38645
+ * - **ThreadSafety**: Unsafe
38646
+ *
38647
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ScriptContext#EnableCoverage)
38648
+ */
38649
+ EnableCoverage(this: ScriptContext, instance: Instance): void;
38650
+ /**
38651
+ * - **ThreadSafety**: Unsafe
38652
+ *
38653
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ScriptContext#GetCoverageStats)
38654
+ */
38655
+ GetCoverageStats(this: ScriptContext): Array<unknown>;
38443
38656
  /**
38444
38657
  * Fired when an error occurs.
38445
38658
  *
@@ -41729,6 +41942,18 @@ interface StudioTestService extends Instance {
41729
41942
  * @deprecated
41730
41943
  */
41731
41944
  readonly _nominal_StudioTestService: unique symbol;
41945
+ /**
41946
+ * - **ThreadSafety**: Unsafe
41947
+ *
41948
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioTestService#AddPlayers)
41949
+ */
41950
+ AddPlayers(this: StudioTestService, numPlayers: number): void;
41951
+ /**
41952
+ * - **ThreadSafety**: Unsafe
41953
+ *
41954
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioTestService#CanLeaveTest)
41955
+ */
41956
+ CanLeaveTest(this: StudioTestService): boolean;
41732
41957
  /**
41733
41958
  * - **ThreadSafety**: Unsafe
41734
41959
  *
@@ -41745,6 +41970,12 @@ interface StudioTestService extends Instance {
41745
41970
  * @returns Arguments passed to the test, or `nil`.
41746
41971
  */
41747
41972
  GetTestArgs(this: StudioTestService): unknown;
41973
+ /**
41974
+ * - **ThreadSafety**: Unsafe
41975
+ *
41976
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioTestService#LeaveTest)
41977
+ */
41978
+ LeaveTest(this: StudioTestService): void;
41748
41979
  }
41749
41980
  /**
41750
41981
  * - **Tags**: NotCreatable, Service, NotReplicated
@@ -49013,6 +49244,21 @@ interface OutputLink extends RBXObject {
49013
49244
  */
49014
49245
  readonly _nominal_OutputLink: unique symbol;
49015
49246
  }
49247
+ /**
49248
+ * - **Tags**: NotCreatable, NotReplicated
49249
+ *
49250
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PluginConnection)
49251
+ */
49252
+ interface PluginConnection extends RBXObject {
49253
+ /**
49254
+ * **DO NOT USE!**
49255
+ *
49256
+ * This field exists to force TypeScript to recognize this as a nominal type
49257
+ * @hidden
49258
+ * @deprecated
49259
+ */
49260
+ readonly _nominal_PluginConnection: unique symbol;
49261
+ }
49016
49262
  /**
49017
49263
  * - **Tags**: NotCreatable, NotReplicated
49018
49264
  *
@@ -49171,6 +49417,21 @@ interface VideoSampler extends RBXObject {
49171
49417
  */
49172
49418
  GetSamplesAtTimesAsync(this: VideoSampler, times: Array<unknown>): Array<unknown>;
49173
49419
  }
49420
+ /**
49421
+ * - **Tags**: NotCreatable, NotReplicated
49422
+ *
49423
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VirtualInput)
49424
+ */
49425
+ interface VirtualInput extends RBXObject {
49426
+ /**
49427
+ * **DO NOT USE!**
49428
+ *
49429
+ * This field exists to force TypeScript to recognize this as a nominal type
49430
+ * @hidden
49431
+ * @deprecated
49432
+ */
49433
+ readonly _nominal_VirtualInput: unique symbol;
49434
+ }
49174
49435
  /**
49175
49436
  * - **Tags**: NotCreatable, NotReplicated
49176
49437
  *