@rbxts/types 1.0.913 → 1.0.915
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 +327 -18
- package/include/generated/PluginSecurity.d.ts +208 -0
- package/include/generated/enums.d.ts +330 -251
- package/package.json +1 -1
|
@@ -156,11 +156,13 @@ interface Services {
|
|
|
156
156
|
PlayerHydrationService: PlayerHydrationService;
|
|
157
157
|
Players: Players;
|
|
158
158
|
PlayerViewService: PlayerViewService;
|
|
159
|
+
PluginConnectionService: PluginConnectionService;
|
|
159
160
|
PluginDebugService: PluginDebugService;
|
|
160
161
|
PluginGuiService: PluginGuiService;
|
|
161
162
|
PluginManagementService: PluginManagementService;
|
|
162
163
|
PluginPolicyService: PluginPolicyService;
|
|
163
164
|
PolicyService: PolicyService;
|
|
165
|
+
ProceduralBehaviorSchedulerService: ProceduralBehaviorSchedulerService;
|
|
164
166
|
ProcessInstancePhysicsService: ProcessInstancePhysicsService;
|
|
165
167
|
ProximityPromptService: ProximityPromptService;
|
|
166
168
|
PublishService: PublishService;
|
|
@@ -402,6 +404,7 @@ interface CreatableInstances {
|
|
|
402
404
|
Folder: Folder;
|
|
403
405
|
ForceField: ForceField;
|
|
404
406
|
Frame: Frame;
|
|
407
|
+
GeneratedFolder: GeneratedFolder;
|
|
405
408
|
GetTextBoundsParams: GetTextBoundsParams;
|
|
406
409
|
Glue: Glue;
|
|
407
410
|
GroundController: GroundController;
|
|
@@ -468,9 +471,11 @@ interface CreatableInstances {
|
|
|
468
471
|
PointLight: PointLight;
|
|
469
472
|
Pose: Pose;
|
|
470
473
|
PrismaticConstraint: PrismaticConstraint;
|
|
474
|
+
ProceduralModel: ProceduralModel;
|
|
471
475
|
ProximityPrompt: ProximityPrompt;
|
|
472
476
|
PyramidHandleAdornment: PyramidHandleAdornment;
|
|
473
477
|
RayValue: RayValue;
|
|
478
|
+
RealtimeMedia: RealtimeMedia;
|
|
474
479
|
RelativeGui: RelativeGui;
|
|
475
480
|
RemoteEvent: RemoteEvent;
|
|
476
481
|
RemoteFunction: RemoteFunction;
|
|
@@ -799,6 +804,7 @@ interface Objects extends Instances {
|
|
|
799
804
|
MLSession: MLSession;
|
|
800
805
|
Object: RBXObject;
|
|
801
806
|
OutputLink: OutputLink;
|
|
807
|
+
PluginConnection: PluginConnection;
|
|
802
808
|
ScreenshotCapture: ScreenshotCapture;
|
|
803
809
|
TerrainIterateOperation: TerrainIterateOperation;
|
|
804
810
|
TerrainModifyOperation: TerrainModifyOperation;
|
|
@@ -806,6 +812,7 @@ interface Objects extends Instances {
|
|
|
806
812
|
TerrainWriteOperation: TerrainWriteOperation;
|
|
807
813
|
VideoCapture: VideoCapture;
|
|
808
814
|
VideoSampler: VideoSampler;
|
|
815
|
+
VirtualInput: VirtualInput;
|
|
809
816
|
VoxelBuffer: VoxelBuffer;
|
|
810
817
|
WebStreamClient: WebStreamClient;
|
|
811
818
|
}
|
|
@@ -5887,6 +5894,19 @@ interface Folder extends Instance {
|
|
|
5887
5894
|
*/
|
|
5888
5895
|
readonly _nominal_Folder: unique symbol;
|
|
5889
5896
|
}
|
|
5897
|
+
/**
|
|
5898
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GeneratedFolder)
|
|
5899
|
+
*/
|
|
5900
|
+
interface GeneratedFolder extends Folder {
|
|
5901
|
+
/**
|
|
5902
|
+
* **DO NOT USE!**
|
|
5903
|
+
*
|
|
5904
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
5905
|
+
* @hidden
|
|
5906
|
+
* @deprecated
|
|
5907
|
+
*/
|
|
5908
|
+
readonly _nominal_GeneratedFolder: unique symbol;
|
|
5909
|
+
}
|
|
5890
5910
|
/**
|
|
5891
5911
|
* Protects a `Humanoid` from taking damage dealt through the `Humanoid:TakeDamage()` method and protects `BaseParts` from having their joints broken due to an `Explosion`.
|
|
5892
5912
|
*
|
|
@@ -8354,6 +8374,8 @@ interface MLService extends Instance {
|
|
|
8354
8374
|
readonly _nominal_MLService: unique symbol;
|
|
8355
8375
|
}
|
|
8356
8376
|
/**
|
|
8377
|
+
* Describes the appearance of a makeup item for the `HumanoidDescription`.
|
|
8378
|
+
*
|
|
8357
8379
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription)
|
|
8358
8380
|
*/
|
|
8359
8381
|
interface MakeupDescription extends Instance {
|
|
@@ -9531,6 +9553,19 @@ interface Tool extends BackpackItem {
|
|
|
9531
9553
|
*/
|
|
9532
9554
|
readonly _nominal_Tool: unique symbol;
|
|
9533
9555
|
}
|
|
9556
|
+
/**
|
|
9557
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ProceduralModel)
|
|
9558
|
+
*/
|
|
9559
|
+
interface ProceduralModel extends Model {
|
|
9560
|
+
/**
|
|
9561
|
+
* **DO NOT USE!**
|
|
9562
|
+
*
|
|
9563
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
9564
|
+
* @hidden
|
|
9565
|
+
* @deprecated
|
|
9566
|
+
*/
|
|
9567
|
+
readonly _nominal_ProceduralModel: unique symbol;
|
|
9568
|
+
}
|
|
9534
9569
|
/**
|
|
9535
9570
|
* Base class for handling physics simulation and 3D spatial queries.
|
|
9536
9571
|
*
|
|
@@ -11140,6 +11175,39 @@ interface PluginCapabilities extends Instance {
|
|
|
11140
11175
|
*/
|
|
11141
11176
|
readonly _nominal_PluginCapabilities: unique symbol;
|
|
11142
11177
|
}
|
|
11178
|
+
/**
|
|
11179
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
11180
|
+
*
|
|
11181
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PluginConnectionService)
|
|
11182
|
+
*/
|
|
11183
|
+
interface PluginConnectionService extends Instance {
|
|
11184
|
+
/**
|
|
11185
|
+
* **DO NOT USE!**
|
|
11186
|
+
*
|
|
11187
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
11188
|
+
* @hidden
|
|
11189
|
+
* @deprecated
|
|
11190
|
+
*/
|
|
11191
|
+
readonly _nominal_PluginConnectionService: unique symbol;
|
|
11192
|
+
/**
|
|
11193
|
+
* - **ThreadSafety**: Unsafe
|
|
11194
|
+
*
|
|
11195
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PluginConnectionService#CanHaveConnectionType)
|
|
11196
|
+
*/
|
|
11197
|
+
CanHaveConnectionType(this: PluginConnectionService, type: CastsToEnum<Enum.PluginConnectionTargetType>): boolean;
|
|
11198
|
+
/**
|
|
11199
|
+
* - **ThreadSafety**: Unsafe
|
|
11200
|
+
*
|
|
11201
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PluginConnectionService#GetPluginConnectionsOfType)
|
|
11202
|
+
*/
|
|
11203
|
+
GetPluginConnectionsOfType(this: PluginConnectionService, type: CastsToEnum<Enum.PluginConnectionTargetType>): Array<unknown>;
|
|
11204
|
+
/**
|
|
11205
|
+
* - **ThreadSafety**: Unsafe
|
|
11206
|
+
*
|
|
11207
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PluginConnectionService#Connected)
|
|
11208
|
+
*/
|
|
11209
|
+
readonly Connected: RBXScriptSignal<(conn: PluginConnection) => void>;
|
|
11210
|
+
}
|
|
11143
11211
|
/**
|
|
11144
11212
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
11145
11213
|
*
|
|
@@ -11572,6 +11640,21 @@ interface SunRaysEffect extends PostEffect {
|
|
|
11572
11640
|
*/
|
|
11573
11641
|
readonly _nominal_SunRaysEffect: unique symbol;
|
|
11574
11642
|
}
|
|
11643
|
+
/**
|
|
11644
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
11645
|
+
*
|
|
11646
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ProceduralBehaviorSchedulerService)
|
|
11647
|
+
*/
|
|
11648
|
+
interface ProceduralBehaviorSchedulerService extends Instance {
|
|
11649
|
+
/**
|
|
11650
|
+
* **DO NOT USE!**
|
|
11651
|
+
*
|
|
11652
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
11653
|
+
* @hidden
|
|
11654
|
+
* @deprecated
|
|
11655
|
+
*/
|
|
11656
|
+
readonly _nominal_ProceduralBehaviorSchedulerService: unique symbol;
|
|
11657
|
+
}
|
|
11575
11658
|
/**
|
|
11576
11659
|
* - **Tags**: NotCreatable, Service
|
|
11577
11660
|
*
|
|
@@ -11649,6 +11732,19 @@ interface RTAnimationTracker extends Instance {
|
|
|
11649
11732
|
*/
|
|
11650
11733
|
readonly _nominal_RTAnimationTracker: unique symbol;
|
|
11651
11734
|
}
|
|
11735
|
+
/**
|
|
11736
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RealtimeMedia)
|
|
11737
|
+
*/
|
|
11738
|
+
interface RealtimeMedia extends Instance {
|
|
11739
|
+
/**
|
|
11740
|
+
* **DO NOT USE!**
|
|
11741
|
+
*
|
|
11742
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
11743
|
+
* @hidden
|
|
11744
|
+
* @deprecated
|
|
11745
|
+
*/
|
|
11746
|
+
readonly _nominal_RealtimeMedia: unique symbol;
|
|
11747
|
+
}
|
|
11652
11748
|
/**
|
|
11653
11749
|
* A service that provides an interface for you to manage and display personalized content recommendations.
|
|
11654
11750
|
*
|
|
@@ -14180,6 +14276,13 @@ interface StudioTestService extends Instance {
|
|
|
14180
14276
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioTestService#EditModeActive)
|
|
14181
14277
|
*/
|
|
14182
14278
|
EditModeActive: boolean;
|
|
14279
|
+
/**
|
|
14280
|
+
* - **ThreadSafety**: Unsafe
|
|
14281
|
+
* - **Tags**: Yields
|
|
14282
|
+
*
|
|
14283
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioTestService#ExecuteMultiplayerTestAsync)
|
|
14284
|
+
*/
|
|
14285
|
+
ExecuteMultiplayerTestAsync(this: StudioTestService, numPlayers: number, args: unknown): unknown;
|
|
14183
14286
|
/**
|
|
14184
14287
|
* - **ThreadSafety**: Unsafe
|
|
14185
14288
|
* - **Tags**: Yields
|
|
@@ -15770,6 +15873,12 @@ interface UserInputService extends Instance {
|
|
|
15770
15873
|
* @deprecated
|
|
15771
15874
|
*/
|
|
15772
15875
|
readonly _nominal_UserInputService: unique symbol;
|
|
15876
|
+
/**
|
|
15877
|
+
* - **ThreadSafety**: Unsafe
|
|
15878
|
+
*
|
|
15879
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserInputService#CreateVirtualInput)
|
|
15880
|
+
*/
|
|
15881
|
+
CreateVirtualInput(this: UserInputService): RBXObject;
|
|
15773
15882
|
}
|
|
15774
15883
|
/**
|
|
15775
15884
|
* A service that handles queries regarding users on the Roblox platform.
|
|
@@ -16400,6 +16509,54 @@ interface OutputLink extends RBXObject {
|
|
|
16400
16509
|
*/
|
|
16401
16510
|
readonly _nominal_OutputLink: unique symbol;
|
|
16402
16511
|
}
|
|
16512
|
+
/**
|
|
16513
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
16514
|
+
*
|
|
16515
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PluginConnection)
|
|
16516
|
+
*/
|
|
16517
|
+
interface PluginConnection extends RBXObject {
|
|
16518
|
+
/**
|
|
16519
|
+
* **DO NOT USE!**
|
|
16520
|
+
*
|
|
16521
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
16522
|
+
* @hidden
|
|
16523
|
+
* @deprecated
|
|
16524
|
+
*/
|
|
16525
|
+
readonly _nominal_PluginConnection: unique symbol;
|
|
16526
|
+
/**
|
|
16527
|
+
* - **ThreadSafety**: ReadSafe
|
|
16528
|
+
* - **Tags**: NotReplicated
|
|
16529
|
+
*
|
|
16530
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PluginConnection#Connected)
|
|
16531
|
+
*/
|
|
16532
|
+
readonly Connected: boolean;
|
|
16533
|
+
/**
|
|
16534
|
+
* - **ThreadSafety**: ReadSafe
|
|
16535
|
+
* - **Tags**: NotReplicated
|
|
16536
|
+
*
|
|
16537
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PluginConnection#TargetId)
|
|
16538
|
+
*/
|
|
16539
|
+
readonly TargetId: string;
|
|
16540
|
+
/**
|
|
16541
|
+
* - **ThreadSafety**: ReadSafe
|
|
16542
|
+
* - **Tags**: NotReplicated
|
|
16543
|
+
*
|
|
16544
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PluginConnection#Type)
|
|
16545
|
+
*/
|
|
16546
|
+
readonly Type: Enum.PluginConnectionTargetType;
|
|
16547
|
+
/**
|
|
16548
|
+
* - **ThreadSafety**: Unsafe
|
|
16549
|
+
*
|
|
16550
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PluginConnection#BindToMessage)
|
|
16551
|
+
*/
|
|
16552
|
+
BindToMessage(this: PluginConnection, callbackFunction: Callback): RBXScriptConnection;
|
|
16553
|
+
/**
|
|
16554
|
+
* - **ThreadSafety**: Unsafe
|
|
16555
|
+
*
|
|
16556
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PluginConnection#SendMessage)
|
|
16557
|
+
*/
|
|
16558
|
+
SendMessage(this: PluginConnection, message: buffer): void;
|
|
16559
|
+
}
|
|
16403
16560
|
/**
|
|
16404
16561
|
* - **Tags**: NotCreatable, NotReplicated
|
|
16405
16562
|
*
|
|
@@ -16477,6 +16634,57 @@ interface VideoSampler extends RBXObject {
|
|
|
16477
16634
|
*/
|
|
16478
16635
|
readonly _nominal_VideoSampler: unique symbol;
|
|
16479
16636
|
}
|
|
16637
|
+
/**
|
|
16638
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
16639
|
+
*
|
|
16640
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VirtualInput)
|
|
16641
|
+
*/
|
|
16642
|
+
interface VirtualInput extends RBXObject {
|
|
16643
|
+
/**
|
|
16644
|
+
* **DO NOT USE!**
|
|
16645
|
+
*
|
|
16646
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
16647
|
+
* @hidden
|
|
16648
|
+
* @deprecated
|
|
16649
|
+
*/
|
|
16650
|
+
readonly _nominal_VirtualInput: unique symbol;
|
|
16651
|
+
/**
|
|
16652
|
+
* - **ThreadSafety**: Unsafe
|
|
16653
|
+
*
|
|
16654
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VirtualInput#SendKey)
|
|
16655
|
+
*/
|
|
16656
|
+
SendKey(this: VirtualInput, isPressed: boolean, keyCode: CastsToEnum<Enum.KeyCode>, isRepeatedKey?: boolean): void;
|
|
16657
|
+
/**
|
|
16658
|
+
* - **ThreadSafety**: Unsafe
|
|
16659
|
+
*
|
|
16660
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VirtualInput#SendMouseButton)
|
|
16661
|
+
*/
|
|
16662
|
+
SendMouseButton(this: VirtualInput, position: Vector2, button: CastsToEnum<Enum.UserInputType>, isDown: boolean, repeatCount?: number): void;
|
|
16663
|
+
/**
|
|
16664
|
+
* - **ThreadSafety**: Unsafe
|
|
16665
|
+
*
|
|
16666
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VirtualInput#SendMouseDelta)
|
|
16667
|
+
*/
|
|
16668
|
+
SendMouseDelta(this: VirtualInput, positionDelta: Vector2): void;
|
|
16669
|
+
/**
|
|
16670
|
+
* - **ThreadSafety**: Unsafe
|
|
16671
|
+
*
|
|
16672
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VirtualInput#SendMousePosition)
|
|
16673
|
+
*/
|
|
16674
|
+
SendMousePosition(this: VirtualInput, position: Vector2): void;
|
|
16675
|
+
/**
|
|
16676
|
+
* - **ThreadSafety**: Unsafe
|
|
16677
|
+
*
|
|
16678
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VirtualInput#SendPointerAction)
|
|
16679
|
+
*/
|
|
16680
|
+
SendPointerAction(this: VirtualInput, position: Vector2, pointerAction: object): void;
|
|
16681
|
+
/**
|
|
16682
|
+
* - **ThreadSafety**: Unsafe
|
|
16683
|
+
*
|
|
16684
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VirtualInput#SendTextInput)
|
|
16685
|
+
*/
|
|
16686
|
+
SendTextInput(this: VirtualInput, text: string): void;
|
|
16687
|
+
}
|
|
16480
16688
|
/**
|
|
16481
16689
|
* - **Tags**: NotCreatable, NotReplicated
|
|
16482
16690
|
*
|