@rbxts/types 1.0.950 → 1.0.951
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 +198 -42
- package/include/generated/PluginSecurity.d.ts +107 -19
- package/include/generated/enums.d.ts +375 -10
- package/package.json +1 -1
|
@@ -8,6 +8,7 @@ interface Services {
|
|
|
8
8
|
ActivityHistoryEventService: ActivityHistoryEventService;
|
|
9
9
|
AdService: AdService;
|
|
10
10
|
AnalyticsService: AnalyticsService;
|
|
11
|
+
AnimatedImageService: AnimatedImageService;
|
|
11
12
|
AnimationClipProvider: AnimationClipProvider;
|
|
12
13
|
AnimationFromVideoCreatorService: AnimationFromVideoCreatorService;
|
|
13
14
|
AnimationFromVideoCreatorStudioService: AnimationFromVideoCreatorStudioService;
|
|
@@ -59,7 +60,6 @@ interface Services {
|
|
|
59
60
|
CreationDBService: CreationDBService;
|
|
60
61
|
CreatorStoreService: CreatorStoreService;
|
|
61
62
|
CrossDMScriptChangeListener: CrossDMScriptChangeListener;
|
|
62
|
-
DataModelPatchService: DataModelPatchService;
|
|
63
63
|
DataStoreService: DataStoreService;
|
|
64
64
|
Debris: Debris;
|
|
65
65
|
DebuggablePluginWatcher: DebuggablePluginWatcher;
|
|
@@ -144,6 +144,7 @@ interface Services {
|
|
|
144
144
|
MLModelDeliveryService: MLModelDeliveryService;
|
|
145
145
|
MLService: MLService;
|
|
146
146
|
ModerationService: ModerationService;
|
|
147
|
+
MomentsService: MomentsService;
|
|
147
148
|
NetworkClient: NetworkClient;
|
|
148
149
|
NetworkServer: NetworkServer;
|
|
149
150
|
NetworkSettings: NetworkSettings;
|
|
@@ -312,6 +313,8 @@ interface CreatableInstances {
|
|
|
312
313
|
AnimationGraphDefinition: AnimationGraphDefinition;
|
|
313
314
|
AnimationNodeDefinition: AnimationNodeDefinition;
|
|
314
315
|
AnimationRigData: AnimationRigData;
|
|
316
|
+
AnimationValueNodeDefinition: AnimationValueNodeDefinition;
|
|
317
|
+
AnimationValueOutputDefinition: AnimationValueOutputDefinition;
|
|
315
318
|
Animator: Animator;
|
|
316
319
|
Annotation: Annotation;
|
|
317
320
|
ArcHandles: ArcHandles;
|
|
@@ -623,6 +626,7 @@ interface CreatableInstances {
|
|
|
623
626
|
WrapTextureTransfer: WrapTextureTransfer;
|
|
624
627
|
}
|
|
625
628
|
interface Instances extends Services, CreatableInstances {
|
|
629
|
+
AnimatedImage: AnimatedImage;
|
|
626
630
|
AnimationClip: AnimationClip;
|
|
627
631
|
AnimationImportData: AnimationImportData;
|
|
628
632
|
AnimationStreamTrack: AnimationStreamTrack;
|
|
@@ -827,6 +831,7 @@ interface Instances extends Services, CreatableInstances {
|
|
|
827
831
|
WorldRoot: WorldRoot;
|
|
828
832
|
}
|
|
829
833
|
interface Objects extends Instances {
|
|
834
|
+
AnimatedImageTrack: AnimatedImageTrack;
|
|
830
835
|
AnimationNode: AnimationNode;
|
|
831
836
|
Capture: Capture;
|
|
832
837
|
ConfigSnapshot: ConfigSnapshot;
|
|
@@ -870,6 +875,21 @@ interface RBXObject {
|
|
|
870
875
|
*/
|
|
871
876
|
readonly _nominal_Object: unique symbol;
|
|
872
877
|
}
|
|
878
|
+
/**
|
|
879
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
880
|
+
*
|
|
881
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimatedImageTrack)
|
|
882
|
+
*/
|
|
883
|
+
interface AnimatedImageTrack extends RBXObject {
|
|
884
|
+
/**
|
|
885
|
+
* **DO NOT USE!**
|
|
886
|
+
*
|
|
887
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
888
|
+
* @hidden
|
|
889
|
+
* @deprecated
|
|
890
|
+
*/
|
|
891
|
+
readonly _nominal_AnimatedImageTrack: unique symbol;
|
|
892
|
+
}
|
|
873
893
|
/**
|
|
874
894
|
* - **Tags**: NotCreatable, NotReplicated
|
|
875
895
|
*
|
|
@@ -1215,6 +1235,21 @@ interface AnalyticsService extends Instance {
|
|
|
1215
1235
|
*/
|
|
1216
1236
|
readonly _nominal_AnalyticsService: unique symbol;
|
|
1217
1237
|
}
|
|
1238
|
+
/**
|
|
1239
|
+
* - **Tags**: NotCreatable, Service
|
|
1240
|
+
*
|
|
1241
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimatedImageService)
|
|
1242
|
+
*/
|
|
1243
|
+
interface AnimatedImageService extends Instance {
|
|
1244
|
+
/**
|
|
1245
|
+
* **DO NOT USE!**
|
|
1246
|
+
*
|
|
1247
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
1248
|
+
* @hidden
|
|
1249
|
+
* @deprecated
|
|
1250
|
+
*/
|
|
1251
|
+
readonly _nominal_AnimatedImageService: unique symbol;
|
|
1252
|
+
}
|
|
1218
1253
|
/**
|
|
1219
1254
|
* References an animation asset which can be loaded by an `AnimationController`.
|
|
1220
1255
|
*
|
|
@@ -1456,6 +1491,32 @@ interface AnimationTrack extends Instance {
|
|
|
1456
1491
|
*/
|
|
1457
1492
|
readonly _nominal_AnimationTrack: unique symbol;
|
|
1458
1493
|
}
|
|
1494
|
+
/**
|
|
1495
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationValueNodeDefinition)
|
|
1496
|
+
*/
|
|
1497
|
+
interface AnimationValueNodeDefinition extends Instance {
|
|
1498
|
+
/**
|
|
1499
|
+
* **DO NOT USE!**
|
|
1500
|
+
*
|
|
1501
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
1502
|
+
* @hidden
|
|
1503
|
+
* @deprecated
|
|
1504
|
+
*/
|
|
1505
|
+
readonly _nominal_AnimationValueNodeDefinition: unique symbol;
|
|
1506
|
+
}
|
|
1507
|
+
/**
|
|
1508
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationValueOutputDefinition)
|
|
1509
|
+
*/
|
|
1510
|
+
interface AnimationValueOutputDefinition extends Instance {
|
|
1511
|
+
/**
|
|
1512
|
+
* **DO NOT USE!**
|
|
1513
|
+
*
|
|
1514
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
1515
|
+
* @hidden
|
|
1516
|
+
* @deprecated
|
|
1517
|
+
*/
|
|
1518
|
+
readonly _nominal_AnimationValueOutputDefinition: unique symbol;
|
|
1519
|
+
}
|
|
1459
1520
|
/**
|
|
1460
1521
|
* Responsible for the playback and replication of `Animations`.
|
|
1461
1522
|
*
|
|
@@ -4140,8 +4201,6 @@ interface ContextActionService extends Instance {
|
|
|
4140
4201
|
readonly _nominal_ContextActionService: unique symbol;
|
|
4141
4202
|
}
|
|
4142
4203
|
/**
|
|
4143
|
-
* - **Tags**: NotBrowsable
|
|
4144
|
-
*
|
|
4145
4204
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ControlState)
|
|
4146
4205
|
*/
|
|
4147
4206
|
interface ControlState extends Instance {
|
|
@@ -4519,21 +4578,6 @@ interface SpecialMesh extends FileMesh {
|
|
|
4519
4578
|
*/
|
|
4520
4579
|
readonly _nominal_SpecialMesh: unique symbol;
|
|
4521
4580
|
}
|
|
4522
|
-
/**
|
|
4523
|
-
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
4524
|
-
*
|
|
4525
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModelPatchService)
|
|
4526
|
-
*/
|
|
4527
|
-
interface DataModelPatchService extends Instance {
|
|
4528
|
-
/**
|
|
4529
|
-
* **DO NOT USE!**
|
|
4530
|
-
*
|
|
4531
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
4532
|
-
* @hidden
|
|
4533
|
-
* @deprecated
|
|
4534
|
-
*/
|
|
4535
|
-
readonly _nominal_DataModelPatchService: unique symbol;
|
|
4536
|
-
}
|
|
4537
4581
|
/**
|
|
4538
4582
|
* - **Tags**: NotCreatable
|
|
4539
4583
|
*
|
|
@@ -5419,6 +5463,8 @@ interface Decal extends FaceInstance {
|
|
|
5419
5463
|
*/
|
|
5420
5464
|
set EmissiveMaskContent(value: Content);
|
|
5421
5465
|
/**
|
|
5466
|
+
* Content ID that determines the metalness map of the surface.
|
|
5467
|
+
*
|
|
5422
5468
|
* - **ThreadSafety**: ReadSafe
|
|
5423
5469
|
* - **Tags**: Hidden
|
|
5424
5470
|
*
|
|
@@ -5426,12 +5472,16 @@ interface Decal extends FaceInstance {
|
|
|
5426
5472
|
*/
|
|
5427
5473
|
MetalnessMap: ContentId;
|
|
5428
5474
|
/**
|
|
5475
|
+
* `Content` object that determines the metalness map of the surface.
|
|
5476
|
+
*
|
|
5429
5477
|
* - **ThreadSafety**: ReadSafe
|
|
5430
5478
|
*
|
|
5431
5479
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Decal#MetalnessMapContent)
|
|
5432
5480
|
*/
|
|
5433
5481
|
set MetalnessMapContent(value: Content);
|
|
5434
5482
|
/**
|
|
5483
|
+
* Content ID that determines the normal map of the surface.
|
|
5484
|
+
*
|
|
5435
5485
|
* - **ThreadSafety**: ReadSafe
|
|
5436
5486
|
* - **Tags**: Hidden
|
|
5437
5487
|
*
|
|
@@ -5439,12 +5489,16 @@ interface Decal extends FaceInstance {
|
|
|
5439
5489
|
*/
|
|
5440
5490
|
NormalMap: ContentId;
|
|
5441
5491
|
/**
|
|
5492
|
+
* `Content` object that determines the normal map of the surface.
|
|
5493
|
+
*
|
|
5442
5494
|
* - **ThreadSafety**: ReadSafe
|
|
5443
5495
|
*
|
|
5444
5496
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Decal#NormalMapContent)
|
|
5445
5497
|
*/
|
|
5446
5498
|
set NormalMapContent(value: Content);
|
|
5447
5499
|
/**
|
|
5500
|
+
* Content ID that determines the roughness map of the surface.
|
|
5501
|
+
*
|
|
5448
5502
|
* - **ThreadSafety**: ReadSafe
|
|
5449
5503
|
* - **Tags**: Hidden
|
|
5450
5504
|
*
|
|
@@ -5452,6 +5506,8 @@ interface Decal extends FaceInstance {
|
|
|
5452
5506
|
*/
|
|
5453
5507
|
RoughnessMap: ContentId;
|
|
5454
5508
|
/**
|
|
5509
|
+
* `Content` object that determines the roughness map of the surface.
|
|
5510
|
+
*
|
|
5455
5511
|
* - **ThreadSafety**: ReadSafe
|
|
5456
5512
|
*
|
|
5457
5513
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Decal#RoughnessMapContent)
|
|
@@ -6023,6 +6079,21 @@ interface GuiBase extends Instance {
|
|
|
6023
6079
|
*/
|
|
6024
6080
|
readonly _nominal_GuiBase: unique symbol;
|
|
6025
6081
|
}
|
|
6082
|
+
/**
|
|
6083
|
+
* - **Tags**: NotCreatable
|
|
6084
|
+
*
|
|
6085
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimatedImage)
|
|
6086
|
+
*/
|
|
6087
|
+
interface AnimatedImage extends GuiBase {
|
|
6088
|
+
/**
|
|
6089
|
+
* **DO NOT USE!**
|
|
6090
|
+
*
|
|
6091
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
6092
|
+
* @hidden
|
|
6093
|
+
* @deprecated
|
|
6094
|
+
*/
|
|
6095
|
+
readonly _nominal_AnimatedImage: unique symbol;
|
|
6096
|
+
}
|
|
6026
6097
|
/**
|
|
6027
6098
|
* An abstract class inherited by 2D `GuiObjects`.
|
|
6028
6099
|
*
|
|
@@ -8727,6 +8798,21 @@ interface ModerationService extends Instance {
|
|
|
8727
8798
|
*/
|
|
8728
8799
|
readonly _nominal_ModerationService: unique symbol;
|
|
8729
8800
|
}
|
|
8801
|
+
/**
|
|
8802
|
+
* - **Tags**: NotCreatable, Service
|
|
8803
|
+
*
|
|
8804
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MomentsService)
|
|
8805
|
+
*/
|
|
8806
|
+
interface MomentsService extends Instance {
|
|
8807
|
+
/**
|
|
8808
|
+
* **DO NOT USE!**
|
|
8809
|
+
*
|
|
8810
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
8811
|
+
* @hidden
|
|
8812
|
+
* @deprecated
|
|
8813
|
+
*/
|
|
8814
|
+
readonly _nominal_MomentsService: unique symbol;
|
|
8815
|
+
}
|
|
8730
8816
|
/**
|
|
8731
8817
|
* Legacy object that contains members useful for pointer input.
|
|
8732
8818
|
*
|
|
@@ -12397,6 +12483,8 @@ interface RunService extends Instance {
|
|
|
12397
12483
|
*/
|
|
12398
12484
|
readonly _nominal_RunService: unique symbol;
|
|
12399
12485
|
/**
|
|
12486
|
+
* The current run state of the game's simulation.
|
|
12487
|
+
*
|
|
12400
12488
|
* - **ThreadSafety**: ReadSafe
|
|
12401
12489
|
* - **Tags**: NotReplicated
|
|
12402
12490
|
*
|
|
@@ -17463,7 +17551,7 @@ interface UIFlexItem extends UIComponent {
|
|
|
17463
17551
|
readonly _nominal_UIFlexItem: unique symbol;
|
|
17464
17552
|
}
|
|
17465
17553
|
/**
|
|
17466
|
-
* Applies a color and transparency gradient to the
|
|
17554
|
+
* Applies a color and transparency gradient to the parent `GuiObject`.
|
|
17467
17555
|
*
|
|
17468
17556
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIGradient)
|
|
17469
17557
|
*/
|