@rbxts/types 1.0.847 → 1.0.848
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 +343 -22
- package/include/generated/PluginSecurity.d.ts +49 -7
- package/include/generated/enums.d.ts +575 -12
- package/package.json +1 -1
|
@@ -73,6 +73,7 @@ interface Services {
|
|
|
73
73
|
FacialAnimationRecordingService: FacialAnimationRecordingService;
|
|
74
74
|
FacialAnimationStreamingServiceV2: FacialAnimationStreamingServiceV2;
|
|
75
75
|
FeatureRestrictionManager: FeatureRestrictionManager;
|
|
76
|
+
FeedService: FeedService;
|
|
76
77
|
GamepadService: GamepadService;
|
|
77
78
|
GamePassService: GamePassService;
|
|
78
79
|
GenerationService: GenerationService;
|
|
@@ -124,6 +125,7 @@ interface Services {
|
|
|
124
125
|
PathfindingService: PathfindingService;
|
|
125
126
|
PerformanceControlService: PerformanceControlService;
|
|
126
127
|
PhysicsService: PhysicsService;
|
|
128
|
+
PlaceAssetIdsService: PlaceAssetIdsService;
|
|
127
129
|
PlacesService: PlacesService;
|
|
128
130
|
PlaceStatsService: PlaceStatsService;
|
|
129
131
|
PlatformCloudStorageService: PlatformCloudStorageService;
|
|
@@ -589,6 +591,7 @@ interface Instances extends Services, CreatableInstances {
|
|
|
589
591
|
FacialAnimationStreamingSubsessionStats: FacialAnimationStreamingSubsessionStats;
|
|
590
592
|
FacsImportData: FacsImportData;
|
|
591
593
|
Feature: Feature;
|
|
594
|
+
FeedPages: FeedPages;
|
|
592
595
|
File: File;
|
|
593
596
|
FormFactorPart: FormFactorPart;
|
|
594
597
|
FriendPages: FriendPages;
|
|
@@ -5150,6 +5153,21 @@ interface FeatureRestrictionManager extends Instance {
|
|
|
5150
5153
|
*/
|
|
5151
5154
|
readonly _nominal_FeatureRestrictionManager: unique symbol;
|
|
5152
5155
|
}
|
|
5156
|
+
/**
|
|
5157
|
+
* - **Tags**: NotCreatable, Service
|
|
5158
|
+
*
|
|
5159
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedService)
|
|
5160
|
+
*/
|
|
5161
|
+
interface FeedService extends Instance {
|
|
5162
|
+
/**
|
|
5163
|
+
* **DO NOT USE!**
|
|
5164
|
+
*
|
|
5165
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
5166
|
+
* @hidden
|
|
5167
|
+
* @deprecated
|
|
5168
|
+
*/
|
|
5169
|
+
readonly _nominal_FeedService: unique symbol;
|
|
5170
|
+
}
|
|
5153
5171
|
/**
|
|
5154
5172
|
* An asset loaded from a file on disk.
|
|
5155
5173
|
*
|
|
@@ -6208,7 +6226,7 @@ interface ArcHandles extends HandlesBase {
|
|
|
6208
6226
|
readonly _nominal_ArcHandles: unique symbol;
|
|
6209
6227
|
}
|
|
6210
6228
|
/**
|
|
6211
|
-
*
|
|
6229
|
+
* Places 3D handles around any object that its `Adornee` is set to.
|
|
6212
6230
|
*
|
|
6213
6231
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Handles)
|
|
6214
6232
|
*/
|
|
@@ -7427,12 +7445,6 @@ interface AuroraScript extends LuaSourceContainer {
|
|
|
7427
7445
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript#Priority)
|
|
7428
7446
|
*/
|
|
7429
7447
|
Priority: number;
|
|
7430
|
-
/**
|
|
7431
|
-
* - **ThreadSafety**: ReadSafe
|
|
7432
|
-
*
|
|
7433
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript#RunInParallel)
|
|
7434
|
-
*/
|
|
7435
|
-
RunInParallel: boolean;
|
|
7436
7448
|
/**
|
|
7437
7449
|
* - **ThreadSafety**: ReadSafe
|
|
7438
7450
|
*
|
|
@@ -8978,6 +8990,21 @@ interface DataStoreVersionPages extends Pages<DataStoreObjectVersionInfo> {
|
|
|
8978
8990
|
*/
|
|
8979
8991
|
readonly _nominal_DataStoreVersionPages: unique symbol;
|
|
8980
8992
|
}
|
|
8993
|
+
/**
|
|
8994
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
8995
|
+
*
|
|
8996
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedPages)
|
|
8997
|
+
*/
|
|
8998
|
+
interface FeedPages extends Pages {
|
|
8999
|
+
/**
|
|
9000
|
+
* **DO NOT USE!**
|
|
9001
|
+
*
|
|
9002
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
9003
|
+
* @hidden
|
|
9004
|
+
* @deprecated
|
|
9005
|
+
*/
|
|
9006
|
+
readonly _nominal_FeedPages: unique symbol;
|
|
9007
|
+
}
|
|
8981
9008
|
/**
|
|
8982
9009
|
* A special version of `Pages` that contains information about a player's friends.
|
|
8983
9010
|
*
|
|
@@ -9283,6 +9310,21 @@ interface PhysicsSettings extends Instance {
|
|
|
9283
9310
|
*/
|
|
9284
9311
|
readonly _nominal_PhysicsSettings: unique symbol;
|
|
9285
9312
|
}
|
|
9313
|
+
/**
|
|
9314
|
+
* - **Tags**: NotCreatable, Service
|
|
9315
|
+
*
|
|
9316
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlaceAssetIdsService)
|
|
9317
|
+
*/
|
|
9318
|
+
interface PlaceAssetIdsService extends Instance {
|
|
9319
|
+
/**
|
|
9320
|
+
* **DO NOT USE!**
|
|
9321
|
+
*
|
|
9322
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
9323
|
+
* @hidden
|
|
9324
|
+
* @deprecated
|
|
9325
|
+
*/
|
|
9326
|
+
readonly _nominal_PlaceAssetIdsService: unique symbol;
|
|
9327
|
+
}
|
|
9286
9328
|
/**
|
|
9287
9329
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
9288
9330
|
*
|