@rbxts/types 1.0.909 → 1.0.911
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 +758 -416
- package/include/generated/PluginSecurity.d.ts +120 -20
- package/include/generated/enums.d.ts +543 -88
- package/package.json +1 -1
|
@@ -12,6 +12,7 @@ interface Services {
|
|
|
12
12
|
AnimationFromVideoCreatorService: AnimationFromVideoCreatorService;
|
|
13
13
|
AnimationFromVideoCreatorStudioService: AnimationFromVideoCreatorStudioService;
|
|
14
14
|
AnnotationsService: AnnotationsService;
|
|
15
|
+
AppAgeSignalsService: AppAgeSignalsService;
|
|
15
16
|
AppLifecycleObserverService: AppLifecycleObserverService;
|
|
16
17
|
AppRatingPromptService: AppRatingPromptService;
|
|
17
18
|
AppUpdateService: AppUpdateService;
|
|
@@ -87,6 +88,7 @@ interface Services {
|
|
|
87
88
|
GenerationService: GenerationService;
|
|
88
89
|
GenericChallengeService: GenericChallengeService;
|
|
89
90
|
GeometryService: GeometryService;
|
|
91
|
+
GongService: GongService;
|
|
90
92
|
GroupService: GroupService;
|
|
91
93
|
GuiService: GuiService;
|
|
92
94
|
HapticService: HapticService;
|
|
@@ -314,6 +316,7 @@ interface CreatableInstances {
|
|
|
314
316
|
AudioTextToSpeech: AudioTextToSpeech;
|
|
315
317
|
AudioTremolo: AudioTremolo;
|
|
316
318
|
AuroraScript: AuroraScript;
|
|
319
|
+
AvatarAbilityRules: AvatarAbilityRules;
|
|
317
320
|
AvatarAccessoryRules: AvatarAccessoryRules;
|
|
318
321
|
AvatarAnimationRules: AvatarAnimationRules;
|
|
319
322
|
AvatarBodyRules: AvatarBodyRules;
|
|
@@ -375,6 +378,7 @@ interface CreatableInstances {
|
|
|
375
378
|
DepthOfFieldEffect: DepthOfFieldEffect;
|
|
376
379
|
Dialog: Dialog;
|
|
377
380
|
DialogChoice: DialogChoice;
|
|
381
|
+
DigitsRigDescription: DigitsRigDescription;
|
|
378
382
|
DistortionSoundEffect: DistortionSoundEffect;
|
|
379
383
|
DoubleConstrainedValue: DoubleConstrainedValue;
|
|
380
384
|
DragDetector: DragDetector;
|
|
@@ -399,7 +403,6 @@ interface CreatableInstances {
|
|
|
399
403
|
Glue: Glue;
|
|
400
404
|
GroundController: GroundController;
|
|
401
405
|
Handles: Handles;
|
|
402
|
-
HandRigDescription: HandRigDescription;
|
|
403
406
|
HapticEffect: HapticEffect;
|
|
404
407
|
Hat: Hat;
|
|
405
408
|
HiddenSurfaceRemovalAsset: HiddenSurfaceRemovalAsset;
|
|
@@ -546,6 +549,7 @@ interface CreatableInstances {
|
|
|
546
549
|
UIPadding: UIPadding;
|
|
547
550
|
UIPageLayout: UIPageLayout;
|
|
548
551
|
UIScale: UIScale;
|
|
552
|
+
UIShadow: UIShadow;
|
|
549
553
|
UISizeConstraint: UISizeConstraint;
|
|
550
554
|
UIStroke: UIStroke;
|
|
551
555
|
UITableLayout: UITableLayout;
|
|
@@ -755,6 +759,7 @@ interface Instances extends Services, CreatableInstances {
|
|
|
755
759
|
SyncScriptBuilder: SyncScriptBuilder;
|
|
756
760
|
TeleportAsyncResult: TeleportAsyncResult;
|
|
757
761
|
Terrain: Terrain;
|
|
762
|
+
TestCase: TestCase;
|
|
758
763
|
TextChatConfigurations: TextChatConfigurations;
|
|
759
764
|
TextChatMessage: TextChatMessage;
|
|
760
765
|
TextFilterResult: TextFilterResult;
|
|
@@ -782,6 +787,7 @@ interface Instances extends Services, CreatableInstances {
|
|
|
782
787
|
}
|
|
783
788
|
interface Objects extends Instances {
|
|
784
789
|
AnimationNode: AnimationNode;
|
|
790
|
+
AuroraHandle: AuroraHandle;
|
|
785
791
|
Capture: Capture;
|
|
786
792
|
ConfigSnapshot: ConfigSnapshot;
|
|
787
793
|
EditableImage: EditableImage;
|
|
@@ -832,6 +838,23 @@ interface AnimationNode extends RBXObject {
|
|
|
832
838
|
*/
|
|
833
839
|
readonly _nominal_AnimationNode: unique symbol;
|
|
834
840
|
}
|
|
841
|
+
/**
|
|
842
|
+
* - **Tags**: NotCreatable
|
|
843
|
+
*
|
|
844
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraHandle)
|
|
845
|
+
*
|
|
846
|
+
* @deprecated
|
|
847
|
+
*/
|
|
848
|
+
interface AuroraHandle extends RBXObject {
|
|
849
|
+
/**
|
|
850
|
+
* **DO NOT USE!**
|
|
851
|
+
*
|
|
852
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
853
|
+
* @hidden
|
|
854
|
+
* @deprecated
|
|
855
|
+
*/
|
|
856
|
+
readonly _nominal_AuroraHandle: unique symbol;
|
|
857
|
+
}
|
|
835
858
|
/**
|
|
836
859
|
* A class which defines a piece of content, such as a screenshot or video, taken in-experience.
|
|
837
860
|
*
|
|
@@ -1448,6 +1471,21 @@ interface AnnotationsService extends Instance {
|
|
|
1448
1471
|
*/
|
|
1449
1472
|
readonly _nominal_AnnotationsService: unique symbol;
|
|
1450
1473
|
}
|
|
1474
|
+
/**
|
|
1475
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
1476
|
+
*
|
|
1477
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AppAgeSignalsService)
|
|
1478
|
+
*/
|
|
1479
|
+
interface AppAgeSignalsService extends Instance {
|
|
1480
|
+
/**
|
|
1481
|
+
* **DO NOT USE!**
|
|
1482
|
+
*
|
|
1483
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
1484
|
+
* @hidden
|
|
1485
|
+
* @deprecated
|
|
1486
|
+
*/
|
|
1487
|
+
readonly _nominal_AppAgeSignalsService: unique symbol;
|
|
1488
|
+
}
|
|
1451
1489
|
/**
|
|
1452
1490
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
1453
1491
|
*
|
|
@@ -1871,6 +1909,8 @@ interface AudioFocusService extends Instance {
|
|
|
1871
1909
|
readonly _nominal_AudioFocusService: unique symbol;
|
|
1872
1910
|
}
|
|
1873
1911
|
/**
|
|
1912
|
+
* Mutes audio streams that fall below a certain volume threshold.
|
|
1913
|
+
*
|
|
1874
1914
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioGate)
|
|
1875
1915
|
*/
|
|
1876
1916
|
interface AudioGate extends Instance {
|
|
@@ -2088,6 +2128,19 @@ interface AuroraService extends Instance {
|
|
|
2088
2128
|
*/
|
|
2089
2129
|
readonly _nominal_AuroraService: unique symbol;
|
|
2090
2130
|
}
|
|
2131
|
+
/**
|
|
2132
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarAbilityRules)
|
|
2133
|
+
*/
|
|
2134
|
+
interface AvatarAbilityRules extends Instance {
|
|
2135
|
+
/**
|
|
2136
|
+
* **DO NOT USE!**
|
|
2137
|
+
*
|
|
2138
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
2139
|
+
* @hidden
|
|
2140
|
+
* @deprecated
|
|
2141
|
+
*/
|
|
2142
|
+
readonly _nominal_AvatarAbilityRules: unique symbol;
|
|
2143
|
+
}
|
|
2091
2144
|
/**
|
|
2092
2145
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarAccessoryRules)
|
|
2093
2146
|
*/
|
|
@@ -2188,7 +2241,7 @@ interface AvatarCreationService extends Instance {
|
|
|
2188
2241
|
/**
|
|
2189
2242
|
* A service to support developer Avatar Editors.
|
|
2190
2243
|
*
|
|
2191
|
-
* - **Tags**: NotCreatable, Service
|
|
2244
|
+
* - **Tags**: NotCreatable, Service
|
|
2192
2245
|
*
|
|
2193
2246
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarEditorService)
|
|
2194
2247
|
*/
|
|
@@ -3075,7 +3128,7 @@ interface ChangeHistoryService extends Instance {
|
|
|
3075
3128
|
*
|
|
3076
3129
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryService#FinishRecording)
|
|
3077
3130
|
* @param this **Must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
|
|
3078
|
-
* @param identifier Identifies the recording from the previous call to `TryBeginRecording()`. If the operation is `
|
|
3131
|
+
* @param identifier Identifies the recording from the previous call to `TryBeginRecording()`. If the operation is `FinishRecordingOperation.Cancel`, this value is ignored, and the recording is determined by context.
|
|
3079
3132
|
* @param operation Specifies the operation to take.
|
|
3080
3133
|
* @param finalOptions Optional table of values to pass to `OnFinishRecording`.
|
|
3081
3134
|
*/
|
|
@@ -4756,6 +4809,19 @@ interface DialogChoice extends Instance {
|
|
|
4756
4809
|
*/
|
|
4757
4810
|
readonly _nominal_DialogChoice: unique symbol;
|
|
4758
4811
|
}
|
|
4812
|
+
/**
|
|
4813
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription)
|
|
4814
|
+
*/
|
|
4815
|
+
interface DigitsRigDescription extends Instance {
|
|
4816
|
+
/**
|
|
4817
|
+
* **DO NOT USE!**
|
|
4818
|
+
*
|
|
4819
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
4820
|
+
* @hidden
|
|
4821
|
+
* @deprecated
|
|
4822
|
+
*/
|
|
4823
|
+
readonly _nominal_DigitsRigDescription: unique symbol;
|
|
4824
|
+
}
|
|
4759
4825
|
/**
|
|
4760
4826
|
* A helper object used to create tools that can drag parts.
|
|
4761
4827
|
*
|
|
@@ -6052,6 +6118,21 @@ interface OrderedDataStore extends GlobalDataStore {
|
|
|
6052
6118
|
SetAsync(this: OrderedDataStore, key: string, value?: unknown): void;
|
|
6053
6119
|
UpdateAsync(this: OrderedDataStore, key: string, transformFunction: (oldValue: number | undefined) => number | undefined): number | undefined;
|
|
6054
6120
|
}
|
|
6121
|
+
/**
|
|
6122
|
+
* - **Tags**: NotCreatable, Service
|
|
6123
|
+
*
|
|
6124
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GongService)
|
|
6125
|
+
*/
|
|
6126
|
+
interface GongService extends Instance {
|
|
6127
|
+
/**
|
|
6128
|
+
* **DO NOT USE!**
|
|
6129
|
+
*
|
|
6130
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
6131
|
+
* @hidden
|
|
6132
|
+
* @deprecated
|
|
6133
|
+
*/
|
|
6134
|
+
readonly _nominal_GongService: unique symbol;
|
|
6135
|
+
}
|
|
6055
6136
|
/**
|
|
6056
6137
|
* GroupService is a service that allows developers to fetch information about a Roblox group from within a game.
|
|
6057
6138
|
*
|
|
@@ -6945,21 +7026,6 @@ interface GuiService extends Instance {
|
|
|
6945
7026
|
*/
|
|
6946
7027
|
readonly _nominal_GuiService: unique symbol;
|
|
6947
7028
|
}
|
|
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
7029
|
/**
|
|
6964
7030
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HapticEffect)
|
|
6965
7031
|
*/
|
|
@@ -13014,7 +13080,7 @@ interface SlimAnimationReplicationService extends Instance {
|
|
|
13014
13080
|
readonly _nominal_SlimAnimationReplicationService: unique symbol;
|
|
13015
13081
|
}
|
|
13016
13082
|
/**
|
|
13017
|
-
* - **Tags**: NotCreatable, Service
|
|
13083
|
+
* - **Tags**: NotCreatable, Service
|
|
13018
13084
|
*
|
|
13019
13085
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SlimReplicationService)
|
|
13020
13086
|
*/
|
|
@@ -13982,6 +14048,12 @@ interface StudioTestService extends Instance {
|
|
|
13982
14048
|
* @deprecated
|
|
13983
14049
|
*/
|
|
13984
14050
|
readonly _nominal_StudioTestService: unique symbol;
|
|
14051
|
+
/**
|
|
14052
|
+
* - **ThreadSafety**: ReadSafe
|
|
14053
|
+
*
|
|
14054
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioTestService#EditModeActive)
|
|
14055
|
+
*/
|
|
14056
|
+
EditModeActive: boolean;
|
|
13985
14057
|
/**
|
|
13986
14058
|
* - **ThreadSafety**: Unsafe
|
|
13987
14059
|
* - **Tags**: Yields
|
|
@@ -14138,7 +14210,7 @@ interface StyleLink extends Instance {
|
|
|
14138
14210
|
readonly _nominal_StyleLink: unique symbol;
|
|
14139
14211
|
}
|
|
14140
14212
|
/**
|
|
14141
|
-
* - **Tags**:
|
|
14213
|
+
* - **Tags**: NotBrowsable
|
|
14142
14214
|
*
|
|
14143
14215
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery)
|
|
14144
14216
|
*/
|
|
@@ -14567,6 +14639,21 @@ interface TerrainRegion extends Instance {
|
|
|
14567
14639
|
*/
|
|
14568
14640
|
ConvertToSmooth(this: TerrainRegion): void;
|
|
14569
14641
|
}
|
|
14642
|
+
/**
|
|
14643
|
+
* - **Tags**: NotCreatable
|
|
14644
|
+
*
|
|
14645
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestCase)
|
|
14646
|
+
*/
|
|
14647
|
+
interface TestCase extends Instance {
|
|
14648
|
+
/**
|
|
14649
|
+
* **DO NOT USE!**
|
|
14650
|
+
*
|
|
14651
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
14652
|
+
* @hidden
|
|
14653
|
+
* @deprecated
|
|
14654
|
+
*/
|
|
14655
|
+
readonly _nominal_TestCase: unique symbol;
|
|
14656
|
+
}
|
|
14570
14657
|
/**
|
|
14571
14658
|
* A service used by Roblox to run controlled tests of the engine. It is available for developers to use, to a limited degree.
|
|
14572
14659
|
*
|
|
@@ -15451,6 +15538,19 @@ interface UIScale extends UIComponent {
|
|
|
15451
15538
|
*/
|
|
15452
15539
|
readonly _nominal_UIScale: unique symbol;
|
|
15453
15540
|
}
|
|
15541
|
+
/**
|
|
15542
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIShadow)
|
|
15543
|
+
*/
|
|
15544
|
+
interface UIShadow extends UIComponent {
|
|
15545
|
+
/**
|
|
15546
|
+
* **DO NOT USE!**
|
|
15547
|
+
*
|
|
15548
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
15549
|
+
* @hidden
|
|
15550
|
+
* @deprecated
|
|
15551
|
+
*/
|
|
15552
|
+
readonly _nominal_UIShadow: unique symbol;
|
|
15553
|
+
}
|
|
15454
15554
|
/**
|
|
15455
15555
|
* Applies an outline to text or a UI border.
|
|
15456
15556
|
*
|