@rbxts/types 1.0.909 → 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 +452 -301
- package/include/generated/PluginSecurity.d.ts +62 -18
- package/include/generated/enums.d.ts +424 -75
- package/package.json +1 -1
|
@@ -314,6 +314,7 @@ interface CreatableInstances {
|
|
|
314
314
|
AudioTextToSpeech: AudioTextToSpeech;
|
|
315
315
|
AudioTremolo: AudioTremolo;
|
|
316
316
|
AuroraScript: AuroraScript;
|
|
317
|
+
AvatarAbilityRules: AvatarAbilityRules;
|
|
317
318
|
AvatarAccessoryRules: AvatarAccessoryRules;
|
|
318
319
|
AvatarAnimationRules: AvatarAnimationRules;
|
|
319
320
|
AvatarBodyRules: AvatarBodyRules;
|
|
@@ -375,6 +376,7 @@ interface CreatableInstances {
|
|
|
375
376
|
DepthOfFieldEffect: DepthOfFieldEffect;
|
|
376
377
|
Dialog: Dialog;
|
|
377
378
|
DialogChoice: DialogChoice;
|
|
379
|
+
DigitsRigDescription: DigitsRigDescription;
|
|
378
380
|
DistortionSoundEffect: DistortionSoundEffect;
|
|
379
381
|
DoubleConstrainedValue: DoubleConstrainedValue;
|
|
380
382
|
DragDetector: DragDetector;
|
|
@@ -399,7 +401,6 @@ interface CreatableInstances {
|
|
|
399
401
|
Glue: Glue;
|
|
400
402
|
GroundController: GroundController;
|
|
401
403
|
Handles: Handles;
|
|
402
|
-
HandRigDescription: HandRigDescription;
|
|
403
404
|
HapticEffect: HapticEffect;
|
|
404
405
|
Hat: Hat;
|
|
405
406
|
HiddenSurfaceRemovalAsset: HiddenSurfaceRemovalAsset;
|
|
@@ -546,6 +547,7 @@ interface CreatableInstances {
|
|
|
546
547
|
UIPadding: UIPadding;
|
|
547
548
|
UIPageLayout: UIPageLayout;
|
|
548
549
|
UIScale: UIScale;
|
|
550
|
+
UIShadow: UIShadow;
|
|
549
551
|
UISizeConstraint: UISizeConstraint;
|
|
550
552
|
UIStroke: UIStroke;
|
|
551
553
|
UITableLayout: UITableLayout;
|
|
@@ -782,6 +784,7 @@ interface Instances extends Services, CreatableInstances {
|
|
|
782
784
|
}
|
|
783
785
|
interface Objects extends Instances {
|
|
784
786
|
AnimationNode: AnimationNode;
|
|
787
|
+
AuroraHandle: AuroraHandle;
|
|
785
788
|
Capture: Capture;
|
|
786
789
|
ConfigSnapshot: ConfigSnapshot;
|
|
787
790
|
EditableImage: EditableImage;
|
|
@@ -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
|
*/
|
|
@@ -4756,6 +4789,19 @@ interface DialogChoice extends Instance {
|
|
|
4756
4789
|
*/
|
|
4757
4790
|
readonly _nominal_DialogChoice: unique symbol;
|
|
4758
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
|
+
}
|
|
4759
4805
|
/**
|
|
4760
4806
|
* A helper object used to create tools that can drag parts.
|
|
4761
4807
|
*
|
|
@@ -6945,21 +6991,6 @@ interface GuiService extends Instance {
|
|
|
6945
6991
|
*/
|
|
6946
6992
|
readonly _nominal_GuiService: unique symbol;
|
|
6947
6993
|
}
|
|
6948
|
-
/**
|
|
6949
|
-
* - **Tags**: NotBrowsable
|
|
6950
|
-
*
|
|
6951
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription)
|
|
6952
|
-
*/
|
|
6953
|
-
interface HandRigDescription extends Instance {
|
|
6954
|
-
/**
|
|
6955
|
-
* **DO NOT USE!**
|
|
6956
|
-
*
|
|
6957
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
6958
|
-
* @hidden
|
|
6959
|
-
* @deprecated
|
|
6960
|
-
*/
|
|
6961
|
-
readonly _nominal_HandRigDescription: unique symbol;
|
|
6962
|
-
}
|
|
6963
6994
|
/**
|
|
6964
6995
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HapticEffect)
|
|
6965
6996
|
*/
|
|
@@ -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
|
*/
|
|
@@ -14138,7 +14169,7 @@ interface StyleLink extends Instance {
|
|
|
14138
14169
|
readonly _nominal_StyleLink: unique symbol;
|
|
14139
14170
|
}
|
|
14140
14171
|
/**
|
|
14141
|
-
* - **Tags**:
|
|
14172
|
+
* - **Tags**: NotBrowsable
|
|
14142
14173
|
*
|
|
14143
14174
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery)
|
|
14144
14175
|
*/
|
|
@@ -15451,6 +15482,19 @@ interface UIScale extends UIComponent {
|
|
|
15451
15482
|
*/
|
|
15452
15483
|
readonly _nominal_UIScale: unique symbol;
|
|
15453
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
|
+
}
|
|
15454
15498
|
/**
|
|
15455
15499
|
* Applies an outline to text or a UI border.
|
|
15456
15500
|
*
|