@rbxts/types 1.0.782 → 1.0.784
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.
|
@@ -12,6 +12,7 @@ interface Services {
|
|
|
12
12
|
AnimationFromVideoCreatorService: AnimationFromVideoCreatorService;
|
|
13
13
|
AnimationFromVideoCreatorStudioService: AnimationFromVideoCreatorStudioService;
|
|
14
14
|
AnnotationsService: AnnotationsService;
|
|
15
|
+
AppLifecycleObserverService: AppLifecycleObserverService;
|
|
15
16
|
AppUpdateService: AppUpdateService;
|
|
16
17
|
AssetCounterService: AssetCounterService;
|
|
17
18
|
AssetDeliveryProxy: AssetDeliveryProxy;
|
|
@@ -172,6 +173,7 @@ interface Services {
|
|
|
172
173
|
TutorialService: TutorialService;
|
|
173
174
|
TweenService: TweenService;
|
|
174
175
|
UGCAvatarService: UGCAvatarService;
|
|
176
|
+
UIDragDetectorService: UIDragDetectorService;
|
|
175
177
|
UnvalidatedAssetService: UnvalidatedAssetService;
|
|
176
178
|
UserInputService: UserInputService;
|
|
177
179
|
UserService: UserService;
|
|
@@ -957,6 +959,8 @@ interface Instance {
|
|
|
957
959
|
* * [Instance:GetAttribute](https://developer.roblox.com/en-us/api-reference/function/Instance/GetAttribute), returns the attribute which has been assigned to the given name
|
|
958
960
|
* * [Instance.AttributeChanged](https://developer.roblox.com/en-us/api-reference/event/Instance/AttributeChanged), fires whenever an attribute is changed on the instance
|
|
959
961
|
* * [Instance:GetAttributeChangedSignal](https://developer.roblox.com/en-us/api-reference/function/Instance/GetAttributeChangedSignal), returns an event that fires when the given attribute changes
|
|
962
|
+
*
|
|
963
|
+
* Tags: CustomLuaState
|
|
960
964
|
*/
|
|
961
965
|
GetAttributes(this: Instance): Map<string, AttributeValue>;
|
|
962
966
|
/**
|
|
@@ -1276,7 +1280,10 @@ interface AccessoryDescription extends Instance {
|
|
|
1276
1280
|
Instance: Instance | undefined;
|
|
1277
1281
|
IsLayered: boolean;
|
|
1278
1282
|
Order: number;
|
|
1283
|
+
Position: Vector3;
|
|
1279
1284
|
Puffiness: number;
|
|
1285
|
+
Rotation: Vector3;
|
|
1286
|
+
Scale: Vector3;
|
|
1280
1287
|
}
|
|
1281
1288
|
|
|
1282
1289
|
interface AccountService extends Instance {
|
|
@@ -2277,6 +2284,17 @@ interface AnnotationsService extends Instance {
|
|
|
2277
2284
|
readonly _nominal_AnnotationsService: unique symbol;
|
|
2278
2285
|
}
|
|
2279
2286
|
|
|
2287
|
+
interface AppLifecycleObserverService extends Instance {
|
|
2288
|
+
/**
|
|
2289
|
+
* **DO NOT USE!**
|
|
2290
|
+
*
|
|
2291
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
2292
|
+
* @hidden
|
|
2293
|
+
* @deprecated
|
|
2294
|
+
*/
|
|
2295
|
+
readonly _nominal_AppLifecycleObserverService: unique symbol;
|
|
2296
|
+
}
|
|
2297
|
+
|
|
2280
2298
|
interface AppUpdateService extends Instance {
|
|
2281
2299
|
/**
|
|
2282
2300
|
* **DO NOT USE!**
|
|
@@ -3584,8 +3602,11 @@ interface AvatarGenerationJob extends Instance {
|
|
|
3584
3602
|
ErrorMessage: string;
|
|
3585
3603
|
Progress: number;
|
|
3586
3604
|
Status: Enum.AvatarGenerationJobStatus;
|
|
3587
|
-
Cancel(this: AvatarGenerationJob): void;
|
|
3588
3605
|
GetOutput(this: AvatarGenerationJob): object;
|
|
3606
|
+
/**
|
|
3607
|
+
* Tags: Yields
|
|
3608
|
+
*/
|
|
3609
|
+
Cancel(this: AvatarGenerationJob): void;
|
|
3589
3610
|
/**
|
|
3590
3611
|
* Tags: Yields
|
|
3591
3612
|
*/
|
|
@@ -11812,6 +11833,7 @@ interface GetTextBoundsParams extends Instance {
|
|
|
11812
11833
|
*/
|
|
11813
11834
|
readonly _nominal_GetTextBoundsParams: unique symbol;
|
|
11814
11835
|
Font: Font;
|
|
11836
|
+
RichText: boolean;
|
|
11815
11837
|
Size: number;
|
|
11816
11838
|
Text: string;
|
|
11817
11839
|
Width: number;
|
|
@@ -35847,7 +35869,9 @@ interface UIDragDetector extends UIComponent {
|
|
|
35847
35869
|
* @deprecated
|
|
35848
35870
|
*/
|
|
35849
35871
|
readonly _nominal_UIDragDetector: unique symbol;
|
|
35872
|
+
ActivatedCursorIcon: string;
|
|
35850
35873
|
BoundingUI: GuiBase2d | undefined;
|
|
35874
|
+
CursorIcon: string;
|
|
35851
35875
|
DragAxis: Vector2;
|
|
35852
35876
|
DragRelativity: Enum.UIDragDetectorDragRelativity;
|
|
35853
35877
|
DragRotation: number;
|
|
@@ -36480,6 +36504,17 @@ interface UIStroke extends UIComponent {
|
|
|
36480
36504
|
Transparency: number;
|
|
36481
36505
|
}
|
|
36482
36506
|
|
|
36507
|
+
interface UIDragDetectorService extends Instance {
|
|
36508
|
+
/**
|
|
36509
|
+
* **DO NOT USE!**
|
|
36510
|
+
*
|
|
36511
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
36512
|
+
* @hidden
|
|
36513
|
+
* @deprecated
|
|
36514
|
+
*/
|
|
36515
|
+
readonly _nominal_UIDragDetectorService: unique symbol;
|
|
36516
|
+
}
|
|
36517
|
+
|
|
36483
36518
|
interface UnvalidatedAssetService extends Instance {
|
|
36484
36519
|
/**
|
|
36485
36520
|
* **DO NOT USE!**
|
|
@@ -20125,27 +20125,6 @@ declare namespace Enum {
|
|
|
20125
20125
|
}
|
|
20126
20126
|
export type TickCountSampleMethod = TickCountSampleMethod.Fast | TickCountSampleMethod.Benchmark | TickCountSampleMethod.Precise;
|
|
20127
20127
|
|
|
20128
|
-
export namespace TonemapperPreset {
|
|
20129
|
-
export interface Default extends globalThis.EnumItem {
|
|
20130
|
-
Name: "Default";
|
|
20131
|
-
Value: 0;
|
|
20132
|
-
EnumType: typeof globalThis.Enum.TonemapperPreset;
|
|
20133
|
-
}
|
|
20134
|
-
|
|
20135
|
-
export const Default: Default;
|
|
20136
|
-
|
|
20137
|
-
export interface Retro extends globalThis.EnumItem {
|
|
20138
|
-
Name: "Retro";
|
|
20139
|
-
Value: 1;
|
|
20140
|
-
EnumType: typeof globalThis.Enum.TonemapperPreset;
|
|
20141
|
-
}
|
|
20142
|
-
|
|
20143
|
-
export const Retro: Retro;
|
|
20144
|
-
|
|
20145
|
-
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TonemapperPreset>;
|
|
20146
|
-
}
|
|
20147
|
-
export type TonemapperPreset = TonemapperPreset.Default | TonemapperPreset.Retro;
|
|
20148
|
-
|
|
20149
20128
|
export namespace TopBottom {
|
|
20150
20129
|
export interface Top extends globalThis.EnumItem {
|
|
20151
20130
|
Name: "Top";
|