@rbxts/types 1.0.939 → 1.0.941
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 +421 -44
- package/include/generated/PluginSecurity.d.ts +113 -5
- package/include/generated/enums.d.ts +632 -21
- package/package.json +1 -1
|
@@ -127,6 +127,7 @@ interface Services {
|
|
|
127
127
|
LogReporterService: LogReporterService;
|
|
128
128
|
LogService: LogService;
|
|
129
129
|
LuaSettings: LuaSettings;
|
|
130
|
+
LuauExpressionService: LuauExpressionService;
|
|
130
131
|
LuauScriptAnalyzerService: LuauScriptAnalyzerService;
|
|
131
132
|
MarketplaceService: MarketplaceService;
|
|
132
133
|
MatchmakingService: MatchmakingService;
|
|
@@ -154,6 +155,7 @@ interface Services {
|
|
|
154
155
|
PerformanceControlService: PerformanceControlService;
|
|
155
156
|
PhysicsService: PhysicsService;
|
|
156
157
|
PhysicsSettings: PhysicsSettings;
|
|
158
|
+
PinShortcutService: PinShortcutService;
|
|
157
159
|
PlaceAssetIdsService: PlaceAssetIdsService;
|
|
158
160
|
PlacesService: PlacesService;
|
|
159
161
|
PlaceStatsService: PlaceStatsService;
|
|
@@ -184,6 +186,7 @@ interface Services {
|
|
|
184
186
|
RenderSettings: RenderSettings;
|
|
185
187
|
ReplicatedFirst: ReplicatedFirst;
|
|
186
188
|
ReplicatedStorage: ReplicatedStorage;
|
|
189
|
+
RequestOrchestratorService: RequestOrchestratorService;
|
|
187
190
|
RibbonNotificationService: RibbonNotificationService;
|
|
188
191
|
RobloxPluginGuiService: RobloxPluginGuiService;
|
|
189
192
|
RobloxServerStorage: RobloxServerStorage;
|
|
@@ -283,6 +286,7 @@ interface Services {
|
|
|
283
286
|
VRStatusService: VRStatusService;
|
|
284
287
|
WebSocketService: WebSocketService;
|
|
285
288
|
WebViewService: WebViewService;
|
|
289
|
+
WindowProtocolService: WindowProtocolService;
|
|
286
290
|
Workspace: Workspace;
|
|
287
291
|
WrapDeformMeshProvider: WrapDeformMeshProvider;
|
|
288
292
|
}
|
|
@@ -438,6 +442,7 @@ interface CreatableInstances {
|
|
|
438
442
|
ImageHandleAdornment: ImageHandleAdornment;
|
|
439
443
|
ImageLabel: ImageLabel;
|
|
440
444
|
InputAction: InputAction;
|
|
445
|
+
InputActionLabel: InputActionLabel;
|
|
441
446
|
InputBinding: InputBinding;
|
|
442
447
|
InputContext: InputContext;
|
|
443
448
|
IntConstrainedValue: IntConstrainedValue;
|
|
@@ -475,6 +480,7 @@ interface CreatableInstances {
|
|
|
475
480
|
ParticleEmitter: ParticleEmitter;
|
|
476
481
|
PartOperation: PartOperation;
|
|
477
482
|
Path2D: Path2D;
|
|
483
|
+
Path3D: Path3D;
|
|
478
484
|
PathfindingLink: PathfindingLink;
|
|
479
485
|
PathfindingModifier: PathfindingModifier;
|
|
480
486
|
PitchShiftSoundEffect: PitchShiftSoundEffect;
|
|
@@ -816,6 +822,7 @@ interface Objects extends Instances {
|
|
|
816
822
|
EditableImage: EditableImage;
|
|
817
823
|
EditableMesh: EditableMesh;
|
|
818
824
|
ExecutedRemoteCommand: ExecutedRemoteCommand;
|
|
825
|
+
LuauExpression: LuauExpression;
|
|
819
826
|
MLSession: MLSession;
|
|
820
827
|
Object: RBXObject;
|
|
821
828
|
OutputLink: OutputLink;
|
|
@@ -6089,7 +6096,7 @@ interface GameSettings extends Instance {
|
|
|
6089
6096
|
*/
|
|
6090
6097
|
readonly _nominal_GameSettings: unique symbol;
|
|
6091
6098
|
/**
|
|
6092
|
-
* **Deprecated:**
|
|
6099
|
+
* **Deprecated:** This property is deprecated. Do not use it for new work.
|
|
6093
6100
|
*
|
|
6094
6101
|
* - **ThreadSafety**: ReadSafe
|
|
6095
6102
|
* - **Tags**:
|
|
@@ -6342,7 +6349,7 @@ interface GuiObject extends GuiBase2d {
|
|
|
6342
6349
|
readonly _nominal_GuiObject: unique symbol;
|
|
6343
6350
|
}
|
|
6344
6351
|
/**
|
|
6345
|
-
* Blends descendants as a group with color/transparency.
|
|
6352
|
+
* Blends descendants as a flattened group with an optional color/transparency modification.
|
|
6346
6353
|
*
|
|
6347
6354
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CanvasGroup)
|
|
6348
6355
|
*/
|
|
@@ -6465,6 +6472,19 @@ interface TextLabel extends GuiLabel {
|
|
|
6465
6472
|
*/
|
|
6466
6473
|
readonly _nominal_TextLabel: unique symbol;
|
|
6467
6474
|
}
|
|
6475
|
+
/**
|
|
6476
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel)
|
|
6477
|
+
*/
|
|
6478
|
+
interface InputActionLabel extends GuiObject {
|
|
6479
|
+
/**
|
|
6480
|
+
* **DO NOT USE!**
|
|
6481
|
+
*
|
|
6482
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
6483
|
+
* @hidden
|
|
6484
|
+
* @deprecated
|
|
6485
|
+
*/
|
|
6486
|
+
readonly _nominal_InputActionLabel: unique symbol;
|
|
6487
|
+
}
|
|
6468
6488
|
/**
|
|
6469
6489
|
* - **Tags**: NotReplicated
|
|
6470
6490
|
*
|
|
@@ -8463,6 +8483,21 @@ interface ModuleScript extends LuaSourceContainer {
|
|
|
8463
8483
|
*/
|
|
8464
8484
|
readonly _nominal_ModuleScript: unique symbol;
|
|
8465
8485
|
}
|
|
8486
|
+
/**
|
|
8487
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
8488
|
+
*
|
|
8489
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LuauExpressionService)
|
|
8490
|
+
*/
|
|
8491
|
+
interface LuauExpressionService extends Instance {
|
|
8492
|
+
/**
|
|
8493
|
+
* **DO NOT USE!**
|
|
8494
|
+
*
|
|
8495
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
8496
|
+
* @hidden
|
|
8497
|
+
* @deprecated
|
|
8498
|
+
*/
|
|
8499
|
+
readonly _nominal_LuauExpressionService: unique symbol;
|
|
8500
|
+
}
|
|
8466
8501
|
/**
|
|
8467
8502
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
8468
8503
|
*
|
|
@@ -9857,7 +9892,7 @@ interface Workspace extends WorldRoot {
|
|
|
9857
9892
|
*/
|
|
9858
9893
|
ApplyRecommendedStreamingSettings(this: Workspace): boolean;
|
|
9859
9894
|
/**
|
|
9860
|
-
* **Deprecated:**
|
|
9895
|
+
* **Deprecated:** This method is deprecated. Do not use it for new work.
|
|
9861
9896
|
*
|
|
9862
9897
|
* Goes through all `BaseParts` given, breaking any joints connected to these parts.
|
|
9863
9898
|
*
|
|
@@ -9872,7 +9907,7 @@ interface Workspace extends WorldRoot {
|
|
|
9872
9907
|
*/
|
|
9873
9908
|
readonly BreakJoints: never;
|
|
9874
9909
|
/**
|
|
9875
|
-
* **Deprecated:**
|
|
9910
|
+
* **Deprecated:** This method is deprecated. Do not use it for new work.
|
|
9876
9911
|
*
|
|
9877
9912
|
* Goes through all `BaseParts` given. If any part's side has a `SurfaceType` that can make a joint it will create a joint with any adjacent parts.
|
|
9878
9913
|
*
|
|
@@ -10312,6 +10347,19 @@ interface Path extends Instance {
|
|
|
10312
10347
|
*/
|
|
10313
10348
|
readonly _nominal_Path: unique symbol;
|
|
10314
10349
|
}
|
|
10350
|
+
/**
|
|
10351
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Path3D)
|
|
10352
|
+
*/
|
|
10353
|
+
interface Path3D extends Instance {
|
|
10354
|
+
/**
|
|
10355
|
+
* **DO NOT USE!**
|
|
10356
|
+
*
|
|
10357
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
10358
|
+
* @hidden
|
|
10359
|
+
* @deprecated
|
|
10360
|
+
*/
|
|
10361
|
+
readonly _nominal_Path3D: unique symbol;
|
|
10362
|
+
}
|
|
10315
10363
|
/**
|
|
10316
10364
|
* Connects two locations which otherwise by default are unconnected.
|
|
10317
10365
|
*
|
|
@@ -10656,6 +10704,21 @@ interface PhysicsSettings extends Instance {
|
|
|
10656
10704
|
*/
|
|
10657
10705
|
UseCSGv2: boolean;
|
|
10658
10706
|
}
|
|
10707
|
+
/**
|
|
10708
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
10709
|
+
*
|
|
10710
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PinShortcutService)
|
|
10711
|
+
*/
|
|
10712
|
+
interface PinShortcutService extends Instance {
|
|
10713
|
+
/**
|
|
10714
|
+
* **DO NOT USE!**
|
|
10715
|
+
*
|
|
10716
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
10717
|
+
* @hidden
|
|
10718
|
+
* @deprecated
|
|
10719
|
+
*/
|
|
10720
|
+
readonly _nominal_PinShortcutService: unique symbol;
|
|
10721
|
+
}
|
|
10659
10722
|
/**
|
|
10660
10723
|
* - **Tags**: NotCreatable, Service
|
|
10661
10724
|
*
|
|
@@ -12270,6 +12333,21 @@ interface ReplicatedStorage extends Instance {
|
|
|
12270
12333
|
*/
|
|
12271
12334
|
readonly _nominal_ReplicatedStorage: unique symbol;
|
|
12272
12335
|
}
|
|
12336
|
+
/**
|
|
12337
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
12338
|
+
*
|
|
12339
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RequestOrchestratorService)
|
|
12340
|
+
*/
|
|
12341
|
+
interface RequestOrchestratorService extends Instance {
|
|
12342
|
+
/**
|
|
12343
|
+
* **DO NOT USE!**
|
|
12344
|
+
*
|
|
12345
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
12346
|
+
* @hidden
|
|
12347
|
+
* @deprecated
|
|
12348
|
+
*/
|
|
12349
|
+
readonly _nominal_RequestOrchestratorService: unique symbol;
|
|
12350
|
+
}
|
|
12273
12351
|
/**
|
|
12274
12352
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
12275
12353
|
*
|
|
@@ -16459,7 +16537,7 @@ interface TestService extends Instance {
|
|
|
16459
16537
|
*/
|
|
16460
16538
|
readonly _nominal_TestService: unique symbol;
|
|
16461
16539
|
/**
|
|
16462
|
-
* **Deprecated:**
|
|
16540
|
+
* **Deprecated:** Use `RunAsync()` instead.
|
|
16463
16541
|
*
|
|
16464
16542
|
* Runs scripts which are parented to `TestService`.
|
|
16465
16543
|
*
|
|
@@ -17989,6 +18067,21 @@ interface WeldConstraint extends Instance {
|
|
|
17989
18067
|
*/
|
|
17990
18068
|
readonly _nominal_WeldConstraint: unique symbol;
|
|
17991
18069
|
}
|
|
18070
|
+
/**
|
|
18071
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
18072
|
+
*
|
|
18073
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WindowProtocolService)
|
|
18074
|
+
*/
|
|
18075
|
+
interface WindowProtocolService extends Instance {
|
|
18076
|
+
/**
|
|
18077
|
+
* **DO NOT USE!**
|
|
18078
|
+
*
|
|
18079
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
18080
|
+
* @hidden
|
|
18081
|
+
* @deprecated
|
|
18082
|
+
*/
|
|
18083
|
+
readonly _nominal_WindowProtocolService: unique symbol;
|
|
18084
|
+
}
|
|
17992
18085
|
/**
|
|
17993
18086
|
* Connects one or more `Instances` to form a processing graph of their streams. At the moment, only audio streams are supported, but this may expand in the future.
|
|
17994
18087
|
*
|
|
@@ -18034,6 +18127,21 @@ interface WrapTextureTransfer extends Instance {
|
|
|
18034
18127
|
*/
|
|
18035
18128
|
readonly _nominal_WrapTextureTransfer: unique symbol;
|
|
18036
18129
|
}
|
|
18130
|
+
/**
|
|
18131
|
+
* - **Tags**: NotCreatable
|
|
18132
|
+
*
|
|
18133
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LuauExpression)
|
|
18134
|
+
*/
|
|
18135
|
+
interface LuauExpression extends RBXObject {
|
|
18136
|
+
/**
|
|
18137
|
+
* **DO NOT USE!**
|
|
18138
|
+
*
|
|
18139
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
18140
|
+
* @hidden
|
|
18141
|
+
* @deprecated
|
|
18142
|
+
*/
|
|
18143
|
+
readonly _nominal_LuauExpression: unique symbol;
|
|
18144
|
+
}
|
|
18037
18145
|
/**
|
|
18038
18146
|
* - **Tags**: NotCreatable, NotReplicated
|
|
18039
18147
|
*
|