@rbxts/types 1.0.937 → 1.0.939

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.
@@ -23,6 +23,8 @@ interface Services {
23
23
  AssetQualityService: AssetQualityService;
24
24
  AssetService: AssetService;
25
25
  AudioFocusService: AudioFocusService;
26
+ AuroraScriptService: AuroraScriptService;
27
+ AuroraService: AuroraService;
26
28
  AvatarChatService: AvatarChatService;
27
29
  AvatarCreationService: AvatarCreationService;
28
30
  AvatarEditorService: AvatarEditorService;
@@ -65,9 +67,11 @@ interface Services {
65
67
  DebugSettings: DebugSettings;
66
68
  DeferredAssetManagerService: DeferredAssetManagerService;
67
69
  DesignFoundationsService: DesignFoundationsService;
70
+ DeviceDisplayService: DeviceDisplayService;
68
71
  DeviceIdService: DeviceIdService;
69
72
  DraggerService: DraggerService;
70
73
  EditableService: EditableService;
74
+ EditorSourceService: EditorSourceService;
71
75
  EncodingService: EncodingService;
72
76
  EventIngestService: EventIngestService;
73
77
  ExampleV2Service: ExampleV2Service;
@@ -108,6 +112,7 @@ interface Services {
108
112
  InstanceFileSyncService: InstanceFileSyncService;
109
113
  InternalMessagingService: InternalMessagingService;
110
114
  InternalMessagingServiceVerifier: InternalMessagingServiceVerifier;
115
+ InternalSyncService: InternalSyncService;
111
116
  IXPService: IXPService;
112
117
  JointsService: JointsService;
113
118
  KeyframeSequenceProvider: KeyframeSequenceProvider;
@@ -165,6 +170,7 @@ interface Services {
165
170
  PluginManagementService: PluginManagementService;
166
171
  PluginPolicyService: PluginPolicyService;
167
172
  PolicyService: PolicyService;
173
+ PopLatencyService: PopLatencyService;
168
174
  Preloaded: Preloaded;
169
175
  ProceduralBehaviorSchedulerService: ProceduralBehaviorSchedulerService;
170
176
  ProcessInstancePhysicsService: ProcessInstancePhysicsService;
@@ -328,6 +334,7 @@ interface CreatableInstances {
328
334
  AudioSpeechToText: AudioSpeechToText;
329
335
  AudioTextToSpeech: AudioTextToSpeech;
330
336
  AudioTremolo: AudioTremolo;
337
+ AuroraScript: AuroraScript;
331
338
  AvatarAbilityRules: AvatarAbilityRules;
332
339
  AvatarAccessoryRules: AvatarAccessoryRules;
333
340
  AvatarAnimationRules: AvatarAnimationRules;
@@ -434,6 +441,7 @@ interface CreatableInstances {
434
441
  InputBinding: InputBinding;
435
442
  InputContext: InputContext;
436
443
  IntConstrainedValue: IntConstrainedValue;
444
+ InternalSyncItem: InternalSyncItem;
437
445
  IntersectOperation: IntersectOperation;
438
446
  IntValue: IntValue;
439
447
  Keyframe: Keyframe;
@@ -655,6 +663,7 @@ interface Instances extends Services, CreatableInstances {
655
663
  DebuggerLuaResponse: DebuggerLuaResponse;
656
664
  DebuggerVariable: DebuggerVariable;
657
665
  DebuggerWatch: DebuggerWatch;
666
+ DisplayWakeLock: DisplayWakeLock;
658
667
  DockWidgetPluginGui: DockWidgetPluginGui;
659
668
  DynamicRotate: DynamicRotate;
660
669
  ExplorerFilterAutocompleter: ExplorerFilterAutocompleter;
@@ -1134,7 +1143,7 @@ interface AdPortal extends Instance {
1134
1143
  readonly _nominal_AdPortal: unique symbol;
1135
1144
  }
1136
1145
  /**
1137
- * A class that allows the display of mobile video ads.
1146
+ * The service responsible for in-experience advertising.
1138
1147
  *
1139
1148
  * - **Tags**: NotCreatable, Service
1140
1149
  *
@@ -1280,7 +1289,7 @@ interface AnimationClipProvider extends Instance {
1280
1289
  * @param assetId The content ID of the animation.
1281
1290
  * @returns The `AnimationClip` found.
1282
1291
  *
1283
- * @deprecated
1292
+ * @deprecated GetAnimationClipAsync
1284
1293
  */
1285
1294
  GetAnimationClip(this: AnimationClipProvider, assetId: ContentId): AnimationClip;
1286
1295
  /**
@@ -1297,7 +1306,7 @@ interface AnimationClipProvider extends Instance {
1297
1306
  * @param useCache True if a cached version can be returned.
1298
1307
  * @returns The `AnimationClip` found.
1299
1308
  *
1300
- * @deprecated
1309
+ * @deprecated GetAnimationClipAsync
1301
1310
  */
1302
1311
  GetAnimationClipById(this: AnimationClipProvider, assetId: number, useCache: boolean): AnimationClip;
1303
1312
  }
@@ -2095,6 +2104,40 @@ interface AuroraScriptObject extends Instance {
2095
2104
  */
2096
2105
  readonly _nominal_AuroraScriptObject: unique symbol;
2097
2106
  }
2107
+ /**
2108
+ * - **Tags**: NotCreatable, Service
2109
+ *
2110
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService)
2111
+ *
2112
+ * @deprecated
2113
+ */
2114
+ interface AuroraScriptService 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_AuroraScriptService: unique symbol;
2123
+ }
2124
+ /**
2125
+ * - **Tags**: NotCreatable, Service
2126
+ *
2127
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService)
2128
+ *
2129
+ * @deprecated
2130
+ */
2131
+ interface AuroraService extends Instance {
2132
+ /**
2133
+ * **DO NOT USE!**
2134
+ *
2135
+ * This field exists to force TypeScript to recognize this as a nominal type
2136
+ * @hidden
2137
+ * @deprecated
2138
+ */
2139
+ readonly _nominal_AuroraService: unique symbol;
2140
+ }
2098
2141
  /**
2099
2142
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarAbilityRules)
2100
2143
  */
@@ -2820,7 +2863,7 @@ interface BodyMover extends Instance {
2820
2863
  *
2821
2864
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BodyAngularVelocity)
2822
2865
  *
2823
- * @deprecated
2866
+ * @deprecated AngularVelocity
2824
2867
  */
2825
2868
  interface BodyAngularVelocity extends BodyMover {
2826
2869
  /**
@@ -2841,7 +2884,7 @@ interface BodyAngularVelocity extends BodyMover {
2841
2884
  *
2842
2885
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BodyForce)
2843
2886
  *
2844
- * @deprecated
2887
+ * @deprecated VectorForce
2845
2888
  */
2846
2889
  interface BodyForce extends BodyMover {
2847
2890
  /**
@@ -2862,7 +2905,7 @@ interface BodyForce extends BodyMover {
2862
2905
  *
2863
2906
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BodyGyro)
2864
2907
  *
2865
- * @deprecated
2908
+ * @deprecated AlignOrientation
2866
2909
  */
2867
2910
  interface BodyGyro extends BodyMover {
2868
2911
  /**
@@ -2883,7 +2926,7 @@ interface BodyGyro extends BodyMover {
2883
2926
  *
2884
2927
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BodyPosition)
2885
2928
  *
2886
- * @deprecated
2929
+ * @deprecated AlignPosition
2887
2930
  */
2888
2931
  interface BodyPosition extends BodyMover {
2889
2932
  /**
@@ -2904,7 +2947,7 @@ interface BodyPosition extends BodyMover {
2904
2947
  *
2905
2948
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BodyThrust)
2906
2949
  *
2907
- * @deprecated
2950
+ * @deprecated VectorForce
2908
2951
  */
2909
2952
  interface BodyThrust extends BodyMover {
2910
2953
  /**
@@ -2925,7 +2968,7 @@ interface BodyThrust extends BodyMover {
2925
2968
  *
2926
2969
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BodyVelocity)
2927
2970
  *
2928
- * @deprecated
2971
+ * @deprecated LinearVelocity
2929
2972
  */
2930
2973
  interface BodyVelocity extends BodyMover {
2931
2974
  /**
@@ -2946,7 +2989,7 @@ interface BodyVelocity extends BodyMover {
2946
2989
  *
2947
2990
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RocketPropulsion)
2948
2991
  *
2949
- * @deprecated
2992
+ * @deprecated LineForce
2950
2993
  */
2951
2994
  interface RocketPropulsion extends BodyMover {
2952
2995
  /**
@@ -3760,7 +3803,7 @@ interface PlaneConstraint extends Constraint {
3760
3803
  *
3761
3804
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Plane)
3762
3805
  *
3763
- * @deprecated
3806
+ * @deprecated PlaneConstraint
3764
3807
  */
3765
3808
  interface Plane extends PlaneConstraint {
3766
3809
  /**
@@ -4784,6 +4827,21 @@ interface DesignFoundationsService extends Instance {
4784
4827
  */
4785
4828
  readonly _nominal_DesignFoundationsService: unique symbol;
4786
4829
  }
4830
+ /**
4831
+ * - **Tags**: NotCreatable, Service, NotReplicated
4832
+ *
4833
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DeviceDisplayService)
4834
+ */
4835
+ interface DeviceDisplayService extends Instance {
4836
+ /**
4837
+ * **DO NOT USE!**
4838
+ *
4839
+ * This field exists to force TypeScript to recognize this as a nominal type
4840
+ * @hidden
4841
+ * @deprecated
4842
+ */
4843
+ readonly _nominal_DeviceDisplayService: unique symbol;
4844
+ }
4787
4845
  /**
4788
4846
  * - **Tags**: NotCreatable, Service, NotReplicated
4789
4847
  *
@@ -4844,6 +4902,21 @@ interface DigitsRigDescription extends Instance {
4844
4902
  */
4845
4903
  readonly _nominal_DigitsRigDescription: unique symbol;
4846
4904
  }
4905
+ /**
4906
+ * - **Tags**: NotCreatable, NotReplicated
4907
+ *
4908
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DisplayWakeLock)
4909
+ */
4910
+ interface DisplayWakeLock extends Instance {
4911
+ /**
4912
+ * **DO NOT USE!**
4913
+ *
4914
+ * This field exists to force TypeScript to recognize this as a nominal type
4915
+ * @hidden
4916
+ * @deprecated
4917
+ */
4918
+ readonly _nominal_DisplayWakeLock: unique symbol;
4919
+ }
4847
4920
  /**
4848
4921
  * A helper object used to create tools that can drag parts.
4849
4922
  *
@@ -4889,6 +4962,21 @@ interface EditableService extends Instance {
4889
4962
  */
4890
4963
  readonly _nominal_EditableService: unique symbol;
4891
4964
  }
4965
+ /**
4966
+ * - **Tags**: NotCreatable, Service, NotReplicated
4967
+ *
4968
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditorSourceService)
4969
+ */
4970
+ interface EditorSourceService extends Instance {
4971
+ /**
4972
+ * **DO NOT USE!**
4973
+ *
4974
+ * This field exists to force TypeScript to recognize this as a nominal type
4975
+ * @hidden
4976
+ * @deprecated
4977
+ */
4978
+ readonly _nominal_EditorSourceService: unique symbol;
4979
+ }
4892
4980
  /**
4893
4981
  * Service providing common encoding, hashing, and compression methods.
4894
4982
  *
@@ -7625,6 +7713,36 @@ interface InternalMessagingServiceVerifier extends Instance {
7625
7713
  */
7626
7714
  readonly _nominal_InternalMessagingServiceVerifier: unique symbol;
7627
7715
  }
7716
+ /**
7717
+ * - **Tags**: NotReplicated
7718
+ *
7719
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InternalSyncItem)
7720
+ */
7721
+ interface InternalSyncItem extends Instance {
7722
+ /**
7723
+ * **DO NOT USE!**
7724
+ *
7725
+ * This field exists to force TypeScript to recognize this as a nominal type
7726
+ * @hidden
7727
+ * @deprecated
7728
+ */
7729
+ readonly _nominal_InternalSyncItem: unique symbol;
7730
+ }
7731
+ /**
7732
+ * - **Tags**: NotCreatable, Service, NotReplicated
7733
+ *
7734
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InternalSyncService)
7735
+ */
7736
+ interface InternalSyncService extends Instance {
7737
+ /**
7738
+ * **DO NOT USE!**
7739
+ *
7740
+ * This field exists to force TypeScript to recognize this as a nominal type
7741
+ * @hidden
7742
+ * @deprecated
7743
+ */
7744
+ readonly _nominal_InternalSyncService: unique symbol;
7745
+ }
7628
7746
  /**
7629
7747
  * The base class for joints.
7630
7748
  *
@@ -7666,7 +7784,7 @@ interface DynamicRotate extends JointInstance {
7666
7784
  *
7667
7785
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RotateP)
7668
7786
  *
7669
- * @deprecated
7787
+ * @deprecated HingeConstraint
7670
7788
  */
7671
7789
  interface RotateP extends DynamicRotate {
7672
7790
  /**
@@ -7685,7 +7803,7 @@ interface RotateP extends DynamicRotate {
7685
7803
  *
7686
7804
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RotateV)
7687
7805
  *
7688
- * @deprecated
7806
+ * @deprecated HingeConstraint
7689
7807
  */
7690
7808
  interface RotateV extends DynamicRotate {
7691
7809
  /**
@@ -7706,7 +7824,7 @@ interface RotateV extends DynamicRotate {
7706
7824
  *
7707
7825
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Glue)
7708
7826
  *
7709
- * @deprecated
7827
+ * @deprecated WeldConstraint
7710
7828
  */
7711
7829
  interface Glue extends JointInstance {
7712
7830
  /**
@@ -7727,7 +7845,7 @@ interface Glue extends JointInstance {
7727
7845
  *
7728
7846
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ManualSurfaceJointInstance)
7729
7847
  *
7730
- * @deprecated
7848
+ * @deprecated WeldConstraint
7731
7849
  */
7732
7850
  interface ManualSurfaceJointInstance extends JointInstance {
7733
7851
  /**
@@ -7748,7 +7866,7 @@ interface ManualSurfaceJointInstance extends JointInstance {
7748
7866
  *
7749
7867
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ManualGlue)
7750
7868
  *
7751
- * @deprecated
7869
+ * @deprecated WeldConstraint
7752
7870
  */
7753
7871
  interface ManualGlue extends ManualSurfaceJointInstance {
7754
7872
  /**
@@ -7769,7 +7887,7 @@ interface ManualGlue extends ManualSurfaceJointInstance {
7769
7887
  *
7770
7888
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ManualWeld)
7771
7889
  *
7772
- * @deprecated
7890
+ * @deprecated WeldConstraint
7773
7891
  */
7774
7892
  interface ManualWeld extends ManualSurfaceJointInstance {
7775
7893
  /**
@@ -7818,7 +7936,7 @@ interface Motor6D extends Motor {
7818
7936
  *
7819
7937
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Rotate)
7820
7938
  *
7821
- * @deprecated
7939
+ * @deprecated HingeConstraint
7822
7940
  */
7823
7941
  interface Rotate extends JointInstance {
7824
7942
  /**
@@ -7839,7 +7957,7 @@ interface Rotate extends JointInstance {
7839
7957
  *
7840
7958
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Snap)
7841
7959
  *
7842
- * @deprecated
7960
+ * @deprecated WeldConstraint
7843
7961
  */
7844
7962
  interface Snap extends JointInstance {
7845
7963
  /**
@@ -7957,7 +8075,7 @@ interface KeyframeSequenceProvider extends Instance {
7957
8075
  * @param assetId The content ID of the animation.
7958
8076
  * @returns The `KeyframeSequence` found.
7959
8077
  *
7960
- * @deprecated
8078
+ * @deprecated GetKeyframeSequenceAsync
7961
8079
  */
7962
8080
  GetKeyframeSequence(this: KeyframeSequenceProvider, assetId: ContentId): Instance | undefined;
7963
8081
  /**
@@ -7974,7 +8092,7 @@ interface KeyframeSequenceProvider extends Instance {
7974
8092
  * @param useCache True if a cached version can be returned.
7975
8093
  * @returns The `KeyframeSequence` found.
7976
8094
  *
7977
- * @deprecated
8095
+ * @deprecated GetKeyframeSequenceAsync
7978
8096
  */
7979
8097
  GetKeyframeSequenceById(this: KeyframeSequenceProvider, assetId: number, useCache: boolean): Instance | undefined;
7980
8098
  }
@@ -8258,6 +8376,23 @@ interface LuaSourceContainer extends Instance {
8258
8376
  */
8259
8377
  readonly _nominal_LuaSourceContainer: unique symbol;
8260
8378
  }
8379
+ /**
8380
+ * - **Tags**:
8381
+ *
8382
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript)
8383
+ *
8384
+ * @deprecated
8385
+ */
8386
+ interface AuroraScript extends LuaSourceContainer {
8387
+ /**
8388
+ * **DO NOT USE!**
8389
+ *
8390
+ * This field exists to force TypeScript to recognize this as a nominal type
8391
+ * @hidden
8392
+ * @deprecated
8393
+ */
8394
+ readonly _nominal_AuroraScript: unique symbol;
8395
+ }
8261
8396
  /**
8262
8397
  * The base class for all script objects which run automatically.
8263
8398
  *
@@ -9110,7 +9245,7 @@ interface OmniRecommendationsService extends Instance {
9110
9245
  *
9111
9246
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/OpenCloudApiV1)
9112
9247
  *
9113
- * @deprecated
9248
+ * @deprecated HttpService
9114
9249
  */
9115
9250
  interface OpenCloudApiV1 extends Instance {
9116
9251
  /**
@@ -9129,7 +9264,7 @@ interface OpenCloudApiV1 extends Instance {
9129
9264
  *
9130
9265
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/OpenCloudService)
9131
9266
  *
9132
- * @deprecated
9267
+ * @deprecated HttpService
9133
9268
  */
9134
9269
  interface OpenCloudService extends Instance {
9135
9270
  /**
@@ -11063,7 +11198,7 @@ interface Plugin extends Instance {
11063
11198
  * @param pluginGuiId A unique and consistent identifier used to storing the widget's dock state and other internal details.
11064
11199
  * @param dockWidgetPluginGuiInfo Describes the `DockWidgetPluginGui` to create (initial state, size, etc).
11065
11200
  *
11066
- * @deprecated
11201
+ * @deprecated CreateDockWidgetPluginGuiAsync
11067
11202
  */
11068
11203
  CreateDockWidgetPluginGui(this: Plugin, pluginGuiId: string, dockWidgetPluginGuiInfo: DockWidgetPluginGuiInfo): DockWidgetPluginGui;
11069
11204
  /**
@@ -11091,7 +11226,7 @@ interface Plugin extends Instance {
11091
11226
  * @param rigModel
11092
11227
  * @param isR15
11093
11228
  *
11094
- * @deprecated
11229
+ * @deprecated ImportFbxAnimationAsync
11095
11230
  */
11096
11231
  ImportFbxAnimation(this: Plugin, rigModel: Instance, isR15?: boolean): Instance | undefined;
11097
11232
  /**
@@ -11118,7 +11253,7 @@ interface Plugin extends Instance {
11118
11253
  * @param this
11119
11254
  * @param isR15
11120
11255
  *
11121
- * @deprecated
11256
+ * @deprecated ImportFbxRigAsync
11122
11257
  */
11123
11258
  ImportFbxRig(this: Plugin, isR15?: boolean): Model;
11124
11259
  /**
@@ -11133,25 +11268,25 @@ interface Plugin extends Instance {
11133
11268
  */
11134
11269
  ImportFbxRigAsync(this: Plugin, isR15?: boolean): Instance | undefined;
11135
11270
  /**
11136
- * Opens a window in Roblox Studio which prompts the user to select an asset based on the `assetType` specified.
11271
+ * Opens a window in Roblox Studio that prompts the user to select an existing `AssetType.Animation` asset. The `assetType` parameter must be `Animation`; other values are not supported and cause an error.
11137
11272
  *
11138
11273
  * - **ThreadSafety**: Unsafe
11139
11274
  * - **Tags**: Yields
11140
11275
  *
11141
11276
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Plugin#PromptForExistingAssetId)
11142
11277
  * @param this
11143
- * @param assetType
11278
+ * @param assetType The asset type to browse. Only `Animation` is supported.
11144
11279
  */
11145
11280
  PromptForExistingAssetId(this: Plugin, assetType: string): number;
11146
11281
  /**
11147
- * Opens a window in Roblox Studio which prompts the user to select an asset based on the `assetType` specified.
11282
+ * Opens a window in Roblox Studio that prompts the user to select an existing `AssetType.Animation` asset. The `assetType` parameter must be `Animation`; other values are not supported and cause an error.
11148
11283
  *
11149
11284
  * - **ThreadSafety**: Unsafe
11150
11285
  * - **Tags**: Yields
11151
11286
  *
11152
11287
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Plugin#PromptForExistingAssetIdAsync)
11153
11288
  * @param this
11154
- * @param assetType
11289
+ * @param assetType The asset type to browse. Only `Animation` is supported.
11155
11290
  */
11156
11291
  PromptForExistingAssetIdAsync(this: Plugin, assetType: string): number;
11157
11292
  /**
@@ -11166,7 +11301,7 @@ interface Plugin extends Instance {
11166
11301
  * @param this
11167
11302
  * @param suggestedFileName
11168
11303
  *
11169
- * @deprecated
11304
+ * @deprecated PromptSaveSelectionAsync
11170
11305
  */
11171
11306
  PromptSaveSelection(this: Plugin, suggestedFileName?: string): boolean;
11172
11307
  /**
@@ -11564,6 +11699,21 @@ interface PolicyService extends Instance {
11564
11699
  */
11565
11700
  readonly _nominal_PolicyService: unique symbol;
11566
11701
  }
11702
+ /**
11703
+ * - **Tags**: NotCreatable, Service, NotReplicated
11704
+ *
11705
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PopLatencyService)
11706
+ */
11707
+ interface PopLatencyService extends Instance {
11708
+ /**
11709
+ * **DO NOT USE!**
11710
+ *
11711
+ * This field exists to force TypeScript to recognize this as a nominal type
11712
+ * @hidden
11713
+ * @deprecated
11714
+ */
11715
+ readonly _nominal_PopLatencyService: unique symbol;
11716
+ }
11567
11717
  /**
11568
11718
  * Base class of all 'Pose Instance' objects.
11569
11719
  *
@@ -12886,6 +13036,13 @@ interface ScriptDocument extends Instance {
12886
13036
  * @param anchorCharacter
12887
13037
  */
12888
13038
  RequestSetSelectionAsync(this: ScriptDocument, cursorLine: number, cursorCharacter: number, anchorLine?: number, anchorCharacter?: number): unknown;
13039
+ /**
13040
+ * - **ThreadSafety**: Unsafe
13041
+ * - **Tags**: Yields
13042
+ *
13043
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ScriptDocument#ReviewableTextEditsAsync)
13044
+ */
13045
+ ReviewableTextEditsAsync(this: ScriptDocument, changes: Array<unknown>): unknown;
12889
13046
  /**
12890
13047
  * Fires when the ScriptDocument changes, including immediately after a text change.
12891
13048
  *
@@ -15609,7 +15766,7 @@ interface StudioService extends Instance {
15609
15766
  * @param fileTypeFilter A list of file types that the user is allowed to select. File types are formatted without a period. For example, {"jpg", "png"} would allow only a JPG or PNG file to be selected. If no filter is provided, the filter is `nil` and allows the user to select any file type.
15610
15767
  * @returns The imported `File`. Returns `nil` if no files were selected, or if the selected file was too large (FileSize greater than 100 megabytes).
15611
15768
  *
15612
- * @deprecated
15769
+ * @deprecated PromptImportFileAsync
15613
15770
  */
15614
15771
  PromptImportFile(this: StudioService, fileTypeFilter?: Array<unknown>): Instance | undefined;
15615
15772
  /**
@@ -15637,7 +15794,7 @@ interface StudioService extends Instance {
15637
15794
  * @param fileTypeFilter A list of file types that the user is allowed to select. File types are formatted without a period. For example, {"jpg", "png"} would allow only JPG and PNG files to be selected. If no filter is provided, the filter is `nil` and allows the user to select any file type.
15638
15795
  * @returns The imported `Files`. Returns an empty list if no files were selected. Returns `nil` if the user selected one or more files that were too large (FileSize greater than 100 megabytes).
15639
15796
  *
15640
- * @deprecated
15797
+ * @deprecated PromptImportFilesAsync
15641
15798
  */
15642
15799
  PromptImportFiles(this: StudioService, fileTypeFilter?: Array<unknown>): Array<Instance>;
15643
15800
  /**
@@ -16312,7 +16469,7 @@ interface TestService extends Instance {
16312
16469
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestService#Run)
16313
16470
  * @param this A service used by Roblox to run controlled tests of the engine. It is available for developers to use, to a limited degree.
16314
16471
  *
16315
- * @deprecated
16472
+ * @deprecated RunAsync
16316
16473
  */
16317
16474
  Run(this: TestService): void;
16318
16475
  /**