@rbxts/types 1.0.908 → 1.0.910
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 +529 -360
- package/include/generated/PluginSecurity.d.ts +96 -52
- package/include/generated/enums.d.ts +686 -157
- package/package.json +1 -1
|
@@ -38,7 +38,6 @@ interface Services {
|
|
|
38
38
|
ChangeHistoryService: ChangeHistoryService;
|
|
39
39
|
ChangeHistoryStreamingService: ChangeHistoryStreamingService;
|
|
40
40
|
Chat: Chat;
|
|
41
|
-
ChatbotUIService: ChatbotUIService;
|
|
42
41
|
CloudCRUDService: CloudCRUDService;
|
|
43
42
|
CollaboratorsService: CollaboratorsService;
|
|
44
43
|
CollectionService: CollectionService;
|
|
@@ -172,6 +171,7 @@ interface Services {
|
|
|
172
171
|
RibbonNotificationService: RibbonNotificationService;
|
|
173
172
|
RobloxPluginGuiService: RobloxPluginGuiService;
|
|
174
173
|
RobloxServerStorage: RobloxServerStorage;
|
|
174
|
+
RolloutValidationService: RolloutValidationService;
|
|
175
175
|
RomarkRbxAnalyticsService: RomarkRbxAnalyticsService;
|
|
176
176
|
RomarkService: RomarkService;
|
|
177
177
|
RtMessagingService: RtMessagingService;
|
|
@@ -210,7 +210,6 @@ interface Services {
|
|
|
210
210
|
StartPageService: StartPageService;
|
|
211
211
|
StartupMessageService: StartupMessageService;
|
|
212
212
|
Stats: Stats;
|
|
213
|
-
StreamingService: StreamingService;
|
|
214
213
|
Studio: Studio;
|
|
215
214
|
StudioAssetService: StudioAssetService;
|
|
216
215
|
StudioCameraService: StudioCameraService;
|
|
@@ -315,6 +314,7 @@ interface CreatableInstances {
|
|
|
315
314
|
AudioTextToSpeech: AudioTextToSpeech;
|
|
316
315
|
AudioTremolo: AudioTremolo;
|
|
317
316
|
AuroraScript: AuroraScript;
|
|
317
|
+
AvatarAbilityRules: AvatarAbilityRules;
|
|
318
318
|
AvatarAccessoryRules: AvatarAccessoryRules;
|
|
319
319
|
AvatarAnimationRules: AvatarAnimationRules;
|
|
320
320
|
AvatarBodyRules: AvatarBodyRules;
|
|
@@ -376,6 +376,7 @@ interface CreatableInstances {
|
|
|
376
376
|
DepthOfFieldEffect: DepthOfFieldEffect;
|
|
377
377
|
Dialog: Dialog;
|
|
378
378
|
DialogChoice: DialogChoice;
|
|
379
|
+
DigitsRigDescription: DigitsRigDescription;
|
|
379
380
|
DistortionSoundEffect: DistortionSoundEffect;
|
|
380
381
|
DoubleConstrainedValue: DoubleConstrainedValue;
|
|
381
382
|
DragDetector: DragDetector;
|
|
@@ -400,7 +401,6 @@ interface CreatableInstances {
|
|
|
400
401
|
Glue: Glue;
|
|
401
402
|
GroundController: GroundController;
|
|
402
403
|
Handles: Handles;
|
|
403
|
-
HandRigDescription: HandRigDescription;
|
|
404
404
|
HapticEffect: HapticEffect;
|
|
405
405
|
Hat: Hat;
|
|
406
406
|
HiddenSurfaceRemovalAsset: HiddenSurfaceRemovalAsset;
|
|
@@ -547,6 +547,7 @@ interface CreatableInstances {
|
|
|
547
547
|
UIPadding: UIPadding;
|
|
548
548
|
UIPageLayout: UIPageLayout;
|
|
549
549
|
UIScale: UIScale;
|
|
550
|
+
UIShadow: UIShadow;
|
|
550
551
|
UISizeConstraint: UISizeConstraint;
|
|
551
552
|
UIStroke: UIStroke;
|
|
552
553
|
UITableLayout: UITableLayout;
|
|
@@ -783,6 +784,7 @@ interface Instances extends Services, CreatableInstances {
|
|
|
783
784
|
}
|
|
784
785
|
interface Objects extends Instances {
|
|
785
786
|
AnimationNode: AnimationNode;
|
|
787
|
+
AuroraHandle: AuroraHandle;
|
|
786
788
|
Capture: Capture;
|
|
787
789
|
ConfigSnapshot: ConfigSnapshot;
|
|
788
790
|
EditableImage: EditableImage;
|
|
@@ -797,6 +799,7 @@ interface Objects extends Instances {
|
|
|
797
799
|
TerrainWriteOperation: TerrainWriteOperation;
|
|
798
800
|
VideoCapture: VideoCapture;
|
|
799
801
|
VideoSampler: VideoSampler;
|
|
802
|
+
VoxelBuffer: VoxelBuffer;
|
|
800
803
|
WebStreamClient: WebStreamClient;
|
|
801
804
|
}
|
|
802
805
|
// GENERATED ROBLOX INSTANCE CLASSES
|
|
@@ -832,6 +835,23 @@ interface AnimationNode extends RBXObject {
|
|
|
832
835
|
*/
|
|
833
836
|
readonly _nominal_AnimationNode: unique symbol;
|
|
834
837
|
}
|
|
838
|
+
/**
|
|
839
|
+
* - **Tags**: NotCreatable
|
|
840
|
+
*
|
|
841
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraHandle)
|
|
842
|
+
*
|
|
843
|
+
* @deprecated
|
|
844
|
+
*/
|
|
845
|
+
interface AuroraHandle extends RBXObject {
|
|
846
|
+
/**
|
|
847
|
+
* **DO NOT USE!**
|
|
848
|
+
*
|
|
849
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
850
|
+
* @hidden
|
|
851
|
+
* @deprecated
|
|
852
|
+
*/
|
|
853
|
+
readonly _nominal_AuroraHandle: unique symbol;
|
|
854
|
+
}
|
|
835
855
|
/**
|
|
836
856
|
* A class which defines a piece of content, such as a screenshot or video, taken in-experience.
|
|
837
857
|
*
|
|
@@ -2088,6 +2108,19 @@ interface AuroraService extends Instance {
|
|
|
2088
2108
|
*/
|
|
2089
2109
|
readonly _nominal_AuroraService: unique symbol;
|
|
2090
2110
|
}
|
|
2111
|
+
/**
|
|
2112
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarAbilityRules)
|
|
2113
|
+
*/
|
|
2114
|
+
interface AvatarAbilityRules extends Instance {
|
|
2115
|
+
/**
|
|
2116
|
+
* **DO NOT USE!**
|
|
2117
|
+
*
|
|
2118
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
2119
|
+
* @hidden
|
|
2120
|
+
* @deprecated
|
|
2121
|
+
*/
|
|
2122
|
+
readonly _nominal_AvatarAbilityRules: unique symbol;
|
|
2123
|
+
}
|
|
2091
2124
|
/**
|
|
2092
2125
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarAccessoryRules)
|
|
2093
2126
|
*/
|
|
@@ -3338,21 +3371,6 @@ interface Chat extends Instance {
|
|
|
3338
3371
|
*/
|
|
3339
3372
|
readonly _nominal_Chat: unique symbol;
|
|
3340
3373
|
}
|
|
3341
|
-
/**
|
|
3342
|
-
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
3343
|
-
*
|
|
3344
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChatbotUIService)
|
|
3345
|
-
*/
|
|
3346
|
-
interface ChatbotUIService extends Instance {
|
|
3347
|
-
/**
|
|
3348
|
-
* **DO NOT USE!**
|
|
3349
|
-
*
|
|
3350
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
3351
|
-
* @hidden
|
|
3352
|
-
* @deprecated
|
|
3353
|
-
*/
|
|
3354
|
-
readonly _nominal_ChatbotUIService: unique symbol;
|
|
3355
|
-
}
|
|
3356
3374
|
/**
|
|
3357
3375
|
* An object that provides user input on in-experience `BaseParts` and `Models`.
|
|
3358
3376
|
*
|
|
@@ -4771,6 +4789,19 @@ interface DialogChoice extends Instance {
|
|
|
4771
4789
|
*/
|
|
4772
4790
|
readonly _nominal_DialogChoice: unique symbol;
|
|
4773
4791
|
}
|
|
4792
|
+
/**
|
|
4793
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription)
|
|
4794
|
+
*/
|
|
4795
|
+
interface DigitsRigDescription extends Instance {
|
|
4796
|
+
/**
|
|
4797
|
+
* **DO NOT USE!**
|
|
4798
|
+
*
|
|
4799
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
4800
|
+
* @hidden
|
|
4801
|
+
* @deprecated
|
|
4802
|
+
*/
|
|
4803
|
+
readonly _nominal_DigitsRigDescription: unique symbol;
|
|
4804
|
+
}
|
|
4774
4805
|
/**
|
|
4775
4806
|
* A helper object used to create tools that can drag parts.
|
|
4776
4807
|
*
|
|
@@ -6960,21 +6991,6 @@ interface GuiService extends Instance {
|
|
|
6960
6991
|
*/
|
|
6961
6992
|
readonly _nominal_GuiService: unique symbol;
|
|
6962
6993
|
}
|
|
6963
|
-
/**
|
|
6964
|
-
* - **Tags**: NotBrowsable
|
|
6965
|
-
*
|
|
6966
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription)
|
|
6967
|
-
*/
|
|
6968
|
-
interface HandRigDescription extends Instance {
|
|
6969
|
-
/**
|
|
6970
|
-
* **DO NOT USE!**
|
|
6971
|
-
*
|
|
6972
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
6973
|
-
* @hidden
|
|
6974
|
-
* @deprecated
|
|
6975
|
-
*/
|
|
6976
|
-
readonly _nominal_HandRigDescription: unique symbol;
|
|
6977
|
-
}
|
|
6978
6994
|
/**
|
|
6979
6995
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HapticEffect)
|
|
6980
6996
|
*/
|
|
@@ -11800,7 +11816,7 @@ interface RobloxServerStorage extends Instance {
|
|
|
11800
11816
|
readonly _nominal_RobloxServerStorage: unique symbol;
|
|
11801
11817
|
}
|
|
11802
11818
|
/**
|
|
11803
|
-
* - **Tags**: NotCreatable
|
|
11819
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
11804
11820
|
*
|
|
11805
11821
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RolloutValidation)
|
|
11806
11822
|
*/
|
|
@@ -11814,6 +11830,21 @@ interface RolloutValidation extends Instance {
|
|
|
11814
11830
|
*/
|
|
11815
11831
|
readonly _nominal_RolloutValidation: unique symbol;
|
|
11816
11832
|
}
|
|
11833
|
+
/**
|
|
11834
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
11835
|
+
*
|
|
11836
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RolloutValidationService)
|
|
11837
|
+
*/
|
|
11838
|
+
interface RolloutValidationService extends Instance {
|
|
11839
|
+
/**
|
|
11840
|
+
* **DO NOT USE!**
|
|
11841
|
+
*
|
|
11842
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
11843
|
+
* @hidden
|
|
11844
|
+
* @deprecated
|
|
11845
|
+
*/
|
|
11846
|
+
readonly _nominal_RolloutValidationService: unique symbol;
|
|
11847
|
+
}
|
|
11817
11848
|
/**
|
|
11818
11849
|
* - **Tags**: NotCreatable, Service
|
|
11819
11850
|
*
|
|
@@ -13014,7 +13045,7 @@ interface SlimAnimationReplicationService extends Instance {
|
|
|
13014
13045
|
readonly _nominal_SlimAnimationReplicationService: unique symbol;
|
|
13015
13046
|
}
|
|
13016
13047
|
/**
|
|
13017
|
-
* - **Tags**: NotCreatable, Service
|
|
13048
|
+
* - **Tags**: NotCreatable, Service
|
|
13018
13049
|
*
|
|
13019
13050
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SlimReplicationService)
|
|
13020
13051
|
*/
|
|
@@ -13670,21 +13701,6 @@ interface TotalCountTimeIntervalItem extends StatsItem {
|
|
|
13670
13701
|
*/
|
|
13671
13702
|
readonly _nominal_TotalCountTimeIntervalItem: unique symbol;
|
|
13672
13703
|
}
|
|
13673
|
-
/**
|
|
13674
|
-
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
13675
|
-
*
|
|
13676
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StreamingService)
|
|
13677
|
-
*/
|
|
13678
|
-
interface StreamingService extends Instance {
|
|
13679
|
-
/**
|
|
13680
|
-
* **DO NOT USE!**
|
|
13681
|
-
*
|
|
13682
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
13683
|
-
* @hidden
|
|
13684
|
-
* @deprecated
|
|
13685
|
-
*/
|
|
13686
|
-
readonly _nominal_StreamingService: unique symbol;
|
|
13687
|
-
}
|
|
13688
13704
|
/**
|
|
13689
13705
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
13690
13706
|
*
|
|
@@ -14153,7 +14169,7 @@ interface StyleLink extends Instance {
|
|
|
14153
14169
|
readonly _nominal_StyleLink: unique symbol;
|
|
14154
14170
|
}
|
|
14155
14171
|
/**
|
|
14156
|
-
* - **Tags**:
|
|
14172
|
+
* - **Tags**: NotBrowsable
|
|
14157
14173
|
*
|
|
14158
14174
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery)
|
|
14159
14175
|
*/
|
|
@@ -14422,7 +14438,7 @@ interface TeleportOptions extends Instance {
|
|
|
14422
14438
|
readonly _nominal_TeleportOptions: unique symbol;
|
|
14423
14439
|
}
|
|
14424
14440
|
/**
|
|
14425
|
-
* Enables transporting
|
|
14441
|
+
* Enables transporting `Players` between places and servers. For more information on how to teleport players between servers, see [Teleport between places](../../../projects/teleport.md).
|
|
14426
14442
|
*
|
|
14427
14443
|
* - **Tags**: NotCreatable, Service
|
|
14428
14444
|
*
|
|
@@ -15466,6 +15482,19 @@ interface UIScale extends UIComponent {
|
|
|
15466
15482
|
*/
|
|
15467
15483
|
readonly _nominal_UIScale: unique symbol;
|
|
15468
15484
|
}
|
|
15485
|
+
/**
|
|
15486
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIShadow)
|
|
15487
|
+
*/
|
|
15488
|
+
interface UIShadow extends UIComponent {
|
|
15489
|
+
/**
|
|
15490
|
+
* **DO NOT USE!**
|
|
15491
|
+
*
|
|
15492
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
15493
|
+
* @hidden
|
|
15494
|
+
* @deprecated
|
|
15495
|
+
*/
|
|
15496
|
+
readonly _nominal_UIShadow: unique symbol;
|
|
15497
|
+
}
|
|
15469
15498
|
/**
|
|
15470
15499
|
* Applies an outline to text or a UI border.
|
|
15471
15500
|
*
|
|
@@ -16251,6 +16280,21 @@ interface VideoSampler extends RBXObject {
|
|
|
16251
16280
|
*/
|
|
16252
16281
|
readonly _nominal_VideoSampler: unique symbol;
|
|
16253
16282
|
}
|
|
16283
|
+
/**
|
|
16284
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
16285
|
+
*
|
|
16286
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VoxelBuffer)
|
|
16287
|
+
*/
|
|
16288
|
+
interface VoxelBuffer extends RBXObject {
|
|
16289
|
+
/**
|
|
16290
|
+
* **DO NOT USE!**
|
|
16291
|
+
*
|
|
16292
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
16293
|
+
* @hidden
|
|
16294
|
+
* @deprecated
|
|
16295
|
+
*/
|
|
16296
|
+
readonly _nominal_VoxelBuffer: unique symbol;
|
|
16297
|
+
}
|
|
16254
16298
|
/**
|
|
16255
16299
|
* Maintains a streaming connection.
|
|
16256
16300
|
*
|