@rbxts/types 1.0.939 → 1.0.940
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 +206 -40
- package/include/generated/PluginSecurity.d.ts +99 -5
- package/include/generated/enums.d.ts +468 -10
- 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
|
}
|
|
@@ -475,6 +479,7 @@ interface CreatableInstances {
|
|
|
475
479
|
ParticleEmitter: ParticleEmitter;
|
|
476
480
|
PartOperation: PartOperation;
|
|
477
481
|
Path2D: Path2D;
|
|
482
|
+
Path3D: Path3D;
|
|
478
483
|
PathfindingLink: PathfindingLink;
|
|
479
484
|
PathfindingModifier: PathfindingModifier;
|
|
480
485
|
PitchShiftSoundEffect: PitchShiftSoundEffect;
|
|
@@ -816,6 +821,7 @@ interface Objects extends Instances {
|
|
|
816
821
|
EditableImage: EditableImage;
|
|
817
822
|
EditableMesh: EditableMesh;
|
|
818
823
|
ExecutedRemoteCommand: ExecutedRemoteCommand;
|
|
824
|
+
LuauExpression: LuauExpression;
|
|
819
825
|
MLSession: MLSession;
|
|
820
826
|
Object: RBXObject;
|
|
821
827
|
OutputLink: OutputLink;
|
|
@@ -6089,7 +6095,7 @@ interface GameSettings extends Instance {
|
|
|
6089
6095
|
*/
|
|
6090
6096
|
readonly _nominal_GameSettings: unique symbol;
|
|
6091
6097
|
/**
|
|
6092
|
-
* **Deprecated:**
|
|
6098
|
+
* **Deprecated:** This property is deprecated. Do not use it for new work.
|
|
6093
6099
|
*
|
|
6094
6100
|
* - **ThreadSafety**: ReadSafe
|
|
6095
6101
|
* - **Tags**:
|
|
@@ -6342,7 +6348,7 @@ interface GuiObject extends GuiBase2d {
|
|
|
6342
6348
|
readonly _nominal_GuiObject: unique symbol;
|
|
6343
6349
|
}
|
|
6344
6350
|
/**
|
|
6345
|
-
* Blends descendants as a group with color/transparency.
|
|
6351
|
+
* Blends descendants as a flattened group with an optional color/transparency modification.
|
|
6346
6352
|
*
|
|
6347
6353
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CanvasGroup)
|
|
6348
6354
|
*/
|
|
@@ -8463,6 +8469,21 @@ interface ModuleScript extends LuaSourceContainer {
|
|
|
8463
8469
|
*/
|
|
8464
8470
|
readonly _nominal_ModuleScript: unique symbol;
|
|
8465
8471
|
}
|
|
8472
|
+
/**
|
|
8473
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
8474
|
+
*
|
|
8475
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LuauExpressionService)
|
|
8476
|
+
*/
|
|
8477
|
+
interface LuauExpressionService extends Instance {
|
|
8478
|
+
/**
|
|
8479
|
+
* **DO NOT USE!**
|
|
8480
|
+
*
|
|
8481
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
8482
|
+
* @hidden
|
|
8483
|
+
* @deprecated
|
|
8484
|
+
*/
|
|
8485
|
+
readonly _nominal_LuauExpressionService: unique symbol;
|
|
8486
|
+
}
|
|
8466
8487
|
/**
|
|
8467
8488
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
8468
8489
|
*
|
|
@@ -9857,7 +9878,7 @@ interface Workspace extends WorldRoot {
|
|
|
9857
9878
|
*/
|
|
9858
9879
|
ApplyRecommendedStreamingSettings(this: Workspace): boolean;
|
|
9859
9880
|
/**
|
|
9860
|
-
* **Deprecated:**
|
|
9881
|
+
* **Deprecated:** This method is deprecated. Do not use it for new work.
|
|
9861
9882
|
*
|
|
9862
9883
|
* Goes through all `BaseParts` given, breaking any joints connected to these parts.
|
|
9863
9884
|
*
|
|
@@ -9872,7 +9893,7 @@ interface Workspace extends WorldRoot {
|
|
|
9872
9893
|
*/
|
|
9873
9894
|
readonly BreakJoints: never;
|
|
9874
9895
|
/**
|
|
9875
|
-
* **Deprecated:**
|
|
9896
|
+
* **Deprecated:** This method is deprecated. Do not use it for new work.
|
|
9876
9897
|
*
|
|
9877
9898
|
* 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
9899
|
*
|
|
@@ -10312,6 +10333,19 @@ interface Path extends Instance {
|
|
|
10312
10333
|
*/
|
|
10313
10334
|
readonly _nominal_Path: unique symbol;
|
|
10314
10335
|
}
|
|
10336
|
+
/**
|
|
10337
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Path3D)
|
|
10338
|
+
*/
|
|
10339
|
+
interface Path3D extends Instance {
|
|
10340
|
+
/**
|
|
10341
|
+
* **DO NOT USE!**
|
|
10342
|
+
*
|
|
10343
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
10344
|
+
* @hidden
|
|
10345
|
+
* @deprecated
|
|
10346
|
+
*/
|
|
10347
|
+
readonly _nominal_Path3D: unique symbol;
|
|
10348
|
+
}
|
|
10315
10349
|
/**
|
|
10316
10350
|
* Connects two locations which otherwise by default are unconnected.
|
|
10317
10351
|
*
|
|
@@ -10656,6 +10690,21 @@ interface PhysicsSettings extends Instance {
|
|
|
10656
10690
|
*/
|
|
10657
10691
|
UseCSGv2: boolean;
|
|
10658
10692
|
}
|
|
10693
|
+
/**
|
|
10694
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
10695
|
+
*
|
|
10696
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PinShortcutService)
|
|
10697
|
+
*/
|
|
10698
|
+
interface PinShortcutService extends Instance {
|
|
10699
|
+
/**
|
|
10700
|
+
* **DO NOT USE!**
|
|
10701
|
+
*
|
|
10702
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
10703
|
+
* @hidden
|
|
10704
|
+
* @deprecated
|
|
10705
|
+
*/
|
|
10706
|
+
readonly _nominal_PinShortcutService: unique symbol;
|
|
10707
|
+
}
|
|
10659
10708
|
/**
|
|
10660
10709
|
* - **Tags**: NotCreatable, Service
|
|
10661
10710
|
*
|
|
@@ -12270,6 +12319,21 @@ interface ReplicatedStorage extends Instance {
|
|
|
12270
12319
|
*/
|
|
12271
12320
|
readonly _nominal_ReplicatedStorage: unique symbol;
|
|
12272
12321
|
}
|
|
12322
|
+
/**
|
|
12323
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
12324
|
+
*
|
|
12325
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RequestOrchestratorService)
|
|
12326
|
+
*/
|
|
12327
|
+
interface RequestOrchestratorService extends Instance {
|
|
12328
|
+
/**
|
|
12329
|
+
* **DO NOT USE!**
|
|
12330
|
+
*
|
|
12331
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
12332
|
+
* @hidden
|
|
12333
|
+
* @deprecated
|
|
12334
|
+
*/
|
|
12335
|
+
readonly _nominal_RequestOrchestratorService: unique symbol;
|
|
12336
|
+
}
|
|
12273
12337
|
/**
|
|
12274
12338
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
12275
12339
|
*
|
|
@@ -16459,7 +16523,7 @@ interface TestService extends Instance {
|
|
|
16459
16523
|
*/
|
|
16460
16524
|
readonly _nominal_TestService: unique symbol;
|
|
16461
16525
|
/**
|
|
16462
|
-
* **Deprecated:**
|
|
16526
|
+
* **Deprecated:** Use `RunAsync()` instead.
|
|
16463
16527
|
*
|
|
16464
16528
|
* Runs scripts which are parented to `TestService`.
|
|
16465
16529
|
*
|
|
@@ -17989,6 +18053,21 @@ interface WeldConstraint extends Instance {
|
|
|
17989
18053
|
*/
|
|
17990
18054
|
readonly _nominal_WeldConstraint: unique symbol;
|
|
17991
18055
|
}
|
|
18056
|
+
/**
|
|
18057
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
18058
|
+
*
|
|
18059
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WindowProtocolService)
|
|
18060
|
+
*/
|
|
18061
|
+
interface WindowProtocolService extends Instance {
|
|
18062
|
+
/**
|
|
18063
|
+
* **DO NOT USE!**
|
|
18064
|
+
*
|
|
18065
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
18066
|
+
* @hidden
|
|
18067
|
+
* @deprecated
|
|
18068
|
+
*/
|
|
18069
|
+
readonly _nominal_WindowProtocolService: unique symbol;
|
|
18070
|
+
}
|
|
17992
18071
|
/**
|
|
17993
18072
|
* 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
18073
|
*
|
|
@@ -18034,6 +18113,21 @@ interface WrapTextureTransfer extends Instance {
|
|
|
18034
18113
|
*/
|
|
18035
18114
|
readonly _nominal_WrapTextureTransfer: unique symbol;
|
|
18036
18115
|
}
|
|
18116
|
+
/**
|
|
18117
|
+
* - **Tags**: NotCreatable
|
|
18118
|
+
*
|
|
18119
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LuauExpression)
|
|
18120
|
+
*/
|
|
18121
|
+
interface LuauExpression extends RBXObject {
|
|
18122
|
+
/**
|
|
18123
|
+
* **DO NOT USE!**
|
|
18124
|
+
*
|
|
18125
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
18126
|
+
* @hidden
|
|
18127
|
+
* @deprecated
|
|
18128
|
+
*/
|
|
18129
|
+
readonly _nominal_LuauExpression: unique symbol;
|
|
18130
|
+
}
|
|
18037
18131
|
/**
|
|
18038
18132
|
* - **Tags**: NotCreatable, NotReplicated
|
|
18039
18133
|
*
|