@rbxts/types 1.0.751 → 1.0.753
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.
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
interface Services {
|
|
8
8
|
AccountService: AccountService;
|
|
9
|
+
ActivityHistoryService: ActivityHistoryService;
|
|
9
10
|
AnalyticsService: AnalyticsService;
|
|
10
11
|
AnimationClipProvider: AnimationClipProvider;
|
|
11
12
|
AnimationFromVideoCreatorService: AnimationFromVideoCreatorService;
|
|
@@ -103,6 +104,7 @@ interface Services {
|
|
|
103
104
|
PluginPolicyService: PluginPolicyService;
|
|
104
105
|
PolicyService: PolicyService;
|
|
105
106
|
ProcessInstancePhysicsService: ProcessInstancePhysicsService;
|
|
107
|
+
ProjectFolderService: ProjectFolderService;
|
|
106
108
|
ProximityPromptService: ProximityPromptService;
|
|
107
109
|
PublishService: PublishService;
|
|
108
110
|
ReflectionService: ReflectionService;
|
|
@@ -170,7 +172,6 @@ interface Services {
|
|
|
170
172
|
VideoCaptureService: VideoCaptureService;
|
|
171
173
|
VideoService: VideoService;
|
|
172
174
|
VisibilityCheckDispatcher: VisibilityCheckDispatcher;
|
|
173
|
-
VisibilityService: VisibilityService;
|
|
174
175
|
VoiceChatInternal: VoiceChatInternal;
|
|
175
176
|
VoiceChatService: VoiceChatService;
|
|
176
177
|
VRService: VRService;
|
|
@@ -1354,6 +1355,18 @@ interface Hat extends Accoutrement {
|
|
|
1354
1355
|
readonly _nominal_Hat: unique symbol;
|
|
1355
1356
|
}
|
|
1356
1357
|
|
|
1358
|
+
interface ActivityHistoryService extends Instance {
|
|
1359
|
+
/**
|
|
1360
|
+
* **DO NOT USE!**
|
|
1361
|
+
*
|
|
1362
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
1363
|
+
* @hidden
|
|
1364
|
+
* @deprecated
|
|
1365
|
+
*/
|
|
1366
|
+
readonly _nominal_ActivityHistoryService: unique symbol;
|
|
1367
|
+
readonly onEventNotificationReceived: RBXScriptSignal<() => void>;
|
|
1368
|
+
}
|
|
1369
|
+
|
|
1357
1370
|
interface AdPortal extends Instance {
|
|
1358
1371
|
/**
|
|
1359
1372
|
* **DO NOT USE!**
|
|
@@ -9430,6 +9443,7 @@ interface ControllerManager extends Instance {
|
|
|
9430
9443
|
GroundSensor: ControllerSensor | undefined;
|
|
9431
9444
|
MovingDirection: Vector3;
|
|
9432
9445
|
RootPart: BasePart | undefined;
|
|
9446
|
+
UpDirection: Vector3;
|
|
9433
9447
|
}
|
|
9434
9448
|
|
|
9435
9449
|
/** Container class for the [HumanoidController](https://developer.roblox.com/en-us/api-reference/class/HumanoidController) among other classes. */
|
|
@@ -22886,7 +22900,13 @@ interface MemoryStoreSortedMap extends Instance {
|
|
|
22886
22900
|
*
|
|
22887
22901
|
* Tags: Yields
|
|
22888
22902
|
*/
|
|
22889
|
-
SetAsync(
|
|
22903
|
+
SetAsync(
|
|
22904
|
+
this: MemoryStoreSortedMap,
|
|
22905
|
+
key: string,
|
|
22906
|
+
value: unknown,
|
|
22907
|
+
expiration: number,
|
|
22908
|
+
sortKey?: string | number,
|
|
22909
|
+
): boolean;
|
|
22890
22910
|
/**
|
|
22891
22911
|
* Retrieves the value of a key from a sorted map and lets you update it to a new value via a callback function.
|
|
22892
22912
|
*
|
|
@@ -29470,6 +29490,17 @@ interface ProcessInstancePhysicsService extends Instance {
|
|
|
29470
29490
|
readonly _nominal_ProcessInstancePhysicsService: unique symbol;
|
|
29471
29491
|
}
|
|
29472
29492
|
|
|
29493
|
+
interface ProjectFolderService extends Instance {
|
|
29494
|
+
/**
|
|
29495
|
+
* **DO NOT USE!**
|
|
29496
|
+
*
|
|
29497
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
29498
|
+
* @hidden
|
|
29499
|
+
* @deprecated
|
|
29500
|
+
*/
|
|
29501
|
+
readonly _nominal_ProjectFolderService: unique symbol;
|
|
29502
|
+
}
|
|
29503
|
+
|
|
29473
29504
|
/** The ProximityPrompt is an object that allows developers to prompt users to interact with an object in the 3D world, such as opening a door or picking up an item.
|
|
29474
29505
|
*
|
|
29475
29506
|
* ProximityPrompts work when parented to a [Part](https://developer.roblox.com/en-us/api-reference/class/Part), [Model](https://developer.roblox.com/en-us/api-reference/class/Model), or [Attachment](https://developer.roblox.com/en-us/api-reference/class/Attachment) in the workspace.
|
|
@@ -37732,6 +37763,10 @@ interface VRService extends Instance {
|
|
|
37732
37763
|
* Tags: NotReplicated
|
|
37733
37764
|
*/
|
|
37734
37765
|
AutomaticScaling: Enum.VRScaling;
|
|
37766
|
+
/**
|
|
37767
|
+
* Tags: NotBrowsable
|
|
37768
|
+
*/
|
|
37769
|
+
AvatarGestures: boolean;
|
|
37735
37770
|
/**
|
|
37736
37771
|
* Tags: NotReplicated
|
|
37737
37772
|
*/
|
|
@@ -38350,17 +38385,6 @@ interface VisibilityCheckDispatcher extends Instance {
|
|
|
38350
38385
|
readonly _nominal_VisibilityCheckDispatcher: unique symbol;
|
|
38351
38386
|
}
|
|
38352
38387
|
|
|
38353
|
-
interface VisibilityService extends Instance {
|
|
38354
|
-
/**
|
|
38355
|
-
* **DO NOT USE!**
|
|
38356
|
-
*
|
|
38357
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
38358
|
-
* @hidden
|
|
38359
|
-
* @deprecated
|
|
38360
|
-
*/
|
|
38361
|
-
readonly _nominal_VisibilityService: unique symbol;
|
|
38362
|
-
}
|
|
38363
|
-
|
|
38364
38388
|
interface VoiceChatInternal extends Instance {
|
|
38365
38389
|
/**
|
|
38366
38390
|
* **DO NOT USE!**
|