@rbxts/types 1.0.811 → 1.0.812
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.
|
@@ -159,7 +159,6 @@ interface Services {
|
|
|
159
159
|
StudioPublishService: StudioPublishService;
|
|
160
160
|
StudioScriptDebugEventListener: StudioScriptDebugEventListener;
|
|
161
161
|
StudioSdkService: StudioSdkService;
|
|
162
|
-
StudioUserService: StudioUserService;
|
|
163
162
|
StudioWidgetsService: StudioWidgetsService;
|
|
164
163
|
StylingService: StylingService;
|
|
165
164
|
TeamCreateData: TeamCreateData;
|
|
@@ -226,7 +225,6 @@ interface CreatableInstances {
|
|
|
226
225
|
AudioFader: AudioFader;
|
|
227
226
|
AudioFilter: AudioFilter;
|
|
228
227
|
AudioFlanger: AudioFlanger;
|
|
229
|
-
AudioLimiter: AudioLimiter;
|
|
230
228
|
AudioListener: AudioListener;
|
|
231
229
|
AudioPitchShifter: AudioPitchShifter;
|
|
232
230
|
AudioPlayer: AudioPlayer;
|
|
@@ -3066,21 +3064,6 @@ interface AudioFocusService extends Instance {
|
|
|
3066
3064
|
readonly _nominal_AudioFocusService: unique symbol;
|
|
3067
3065
|
}
|
|
3068
3066
|
|
|
3069
|
-
interface AudioLimiter extends Instance {
|
|
3070
|
-
/**
|
|
3071
|
-
* **DO NOT USE!**
|
|
3072
|
-
*
|
|
3073
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
3074
|
-
* @hidden
|
|
3075
|
-
* @deprecated
|
|
3076
|
-
*/
|
|
3077
|
-
readonly _nominal_AudioLimiter: unique symbol;
|
|
3078
|
-
Bypass: boolean;
|
|
3079
|
-
MaxLevel: number;
|
|
3080
|
-
Release: number;
|
|
3081
|
-
GetConnectedWires(this: AudioLimiter, pin: string): Array<Instance>;
|
|
3082
|
-
}
|
|
3083
|
-
|
|
3084
3067
|
interface AudioListener extends Instance {
|
|
3085
3068
|
/**
|
|
3086
3069
|
* **DO NOT USE!**
|
|
@@ -3239,15 +3222,11 @@ interface AvatarCreationService extends Instance {
|
|
|
3239
3222
|
/**
|
|
3240
3223
|
* Tags: Yields
|
|
3241
3224
|
*/
|
|
3242
|
-
GenerateAvatarPreviewAsync2(this: AvatarCreationService, sessionId: string, fileId: string, textPrompt: string
|
|
3225
|
+
GenerateAvatarPreviewAsync2(this: AvatarCreationService, sessionId: string, fileId: string, textPrompt: string): string;
|
|
3243
3226
|
/**
|
|
3244
3227
|
* Tags: Yields
|
|
3245
3228
|
*/
|
|
3246
3229
|
GetAvatarGenerationConfig(this: AvatarCreationService): object;
|
|
3247
|
-
/**
|
|
3248
|
-
* Tags: Yields
|
|
3249
|
-
*/
|
|
3250
|
-
GetBatchTokenDetailsAsync(this: AvatarCreationService, tokenIds: Array<any>): unknown;
|
|
3251
3230
|
/**
|
|
3252
3231
|
* Tags: Yields
|
|
3253
3232
|
*/
|
|
@@ -5147,11 +5126,9 @@ interface WrapDeformer extends BaseWrap {
|
|
|
5147
5126
|
* @deprecated
|
|
5148
5127
|
*/
|
|
5149
5128
|
readonly _nominal_WrapDeformer: unique symbol;
|
|
5150
|
-
|
|
5151
|
-
|
|
5152
|
-
|
|
5153
|
-
*/
|
|
5154
|
-
CreateEditableMeshAsync(this: WrapDeformer): EditableMesh;
|
|
5129
|
+
Amount: number;
|
|
5130
|
+
Enabled: boolean;
|
|
5131
|
+
RenderMeshID: ContentId;
|
|
5155
5132
|
}
|
|
5156
5133
|
|
|
5157
5134
|
/** The WrapLayer object defines a 3D accessory's inner and outer surfaces and other properties related to layering accessories. These surfaces, or the Inner Cage and Outer Cage, are similar to collision boxes, and describe the surfaces of which other 3D accessories can be placed without clipping or breaking.
|
|
@@ -6324,6 +6301,23 @@ interface Breakpoint extends Instance {
|
|
|
6324
6301
|
readonly _nominal_Breakpoint: unique symbol;
|
|
6325
6302
|
}
|
|
6326
6303
|
|
|
6304
|
+
interface BubbleChatMessageProperties extends Instance {
|
|
6305
|
+
/**
|
|
6306
|
+
* **DO NOT USE!**
|
|
6307
|
+
*
|
|
6308
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
6309
|
+
* @hidden
|
|
6310
|
+
* @deprecated
|
|
6311
|
+
*/
|
|
6312
|
+
readonly _nominal_BubbleChatMessageProperties: unique symbol;
|
|
6313
|
+
BackgroundColor3: Color3;
|
|
6314
|
+
BackgroundTransparency: number;
|
|
6315
|
+
FontFace: Font;
|
|
6316
|
+
TailVisible: boolean;
|
|
6317
|
+
TextColor3: Color3;
|
|
6318
|
+
TextSize: number;
|
|
6319
|
+
}
|
|
6320
|
+
|
|
6327
6321
|
interface BulkImportService extends Instance {
|
|
6328
6322
|
/**
|
|
6329
6323
|
* **DO NOT USE!**
|
|
@@ -22928,10 +22922,6 @@ interface ModuleScript extends LuaSourceContainer {
|
|
|
22928
22922
|
* @deprecated
|
|
22929
22923
|
*/
|
|
22930
22924
|
LinkedSource: ContentId;
|
|
22931
|
-
/**
|
|
22932
|
-
* The code to be executed.
|
|
22933
|
-
*/
|
|
22934
|
-
Source: string;
|
|
22935
22925
|
}
|
|
22936
22926
|
|
|
22937
22927
|
interface LuauScriptAnalyzerService extends Instance {
|
|
@@ -33862,17 +33852,6 @@ interface StudioSdkService extends Instance {
|
|
|
33862
33852
|
readonly _nominal_StudioSdkService: unique symbol;
|
|
33863
33853
|
}
|
|
33864
33854
|
|
|
33865
|
-
interface StudioUserService extends Instance {
|
|
33866
|
-
/**
|
|
33867
|
-
* **DO NOT USE!**
|
|
33868
|
-
*
|
|
33869
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
33870
|
-
* @hidden
|
|
33871
|
-
* @deprecated
|
|
33872
|
-
*/
|
|
33873
|
-
readonly _nominal_StudioUserService: unique symbol;
|
|
33874
|
-
}
|
|
33875
|
-
|
|
33876
33855
|
interface StudioWidgetsService extends Instance {
|
|
33877
33856
|
/**
|
|
33878
33857
|
* **DO NOT USE!**
|
|
@@ -35341,23 +35320,6 @@ interface TextChatMessageProperties extends Instance {
|
|
|
35341
35320
|
Translation: string;
|
|
35342
35321
|
}
|
|
35343
35322
|
|
|
35344
|
-
interface BubbleChatMessageProperties extends TextChatMessageProperties {
|
|
35345
|
-
/**
|
|
35346
|
-
* **DO NOT USE!**
|
|
35347
|
-
*
|
|
35348
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
35349
|
-
* @hidden
|
|
35350
|
-
* @deprecated
|
|
35351
|
-
*/
|
|
35352
|
-
readonly _nominal_BubbleChatMessageProperties: unique symbol;
|
|
35353
|
-
BackgroundColor3: Color3;
|
|
35354
|
-
BackgroundTransparency: number;
|
|
35355
|
-
FontFace: Font;
|
|
35356
|
-
TailVisible: boolean;
|
|
35357
|
-
TextColor3: Color3;
|
|
35358
|
-
TextSize: number;
|
|
35359
|
-
}
|
|
35360
|
-
|
|
35361
35323
|
interface ChatWindowMessageProperties extends TextChatMessageProperties {
|
|
35362
35324
|
/**
|
|
35363
35325
|
* **DO NOT USE!**
|
|
@@ -272,6 +272,19 @@ interface BaseWrap extends Instance {
|
|
|
272
272
|
ImportOrigin: CFrame;
|
|
273
273
|
}
|
|
274
274
|
|
|
275
|
+
interface WrapDeformer extends BaseWrap {
|
|
276
|
+
/**
|
|
277
|
+
* **DO NOT USE!**
|
|
278
|
+
*
|
|
279
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
280
|
+
* @hidden
|
|
281
|
+
* @deprecated
|
|
282
|
+
*/
|
|
283
|
+
readonly _nominal_WrapDeformer: unique symbol;
|
|
284
|
+
Amount: number;
|
|
285
|
+
RenderMeshID: ContentId;
|
|
286
|
+
}
|
|
287
|
+
|
|
275
288
|
interface WrapLayer extends BaseWrap {
|
|
276
289
|
/**
|
|
277
290
|
* **DO NOT USE!**
|
|
@@ -1169,6 +1182,21 @@ interface BaseScript extends LuaSourceContainer {
|
|
|
1169
1182
|
RunContext: Enum.RunContext;
|
|
1170
1183
|
}
|
|
1171
1184
|
|
|
1185
|
+
interface ModuleScript extends LuaSourceContainer {
|
|
1186
|
+
/**
|
|
1187
|
+
* **DO NOT USE!**
|
|
1188
|
+
*
|
|
1189
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
1190
|
+
* @hidden
|
|
1191
|
+
* @deprecated
|
|
1192
|
+
*/
|
|
1193
|
+
readonly _nominal_ModuleScript: unique symbol;
|
|
1194
|
+
/**
|
|
1195
|
+
* The code to be executed.
|
|
1196
|
+
*/
|
|
1197
|
+
Source: string;
|
|
1198
|
+
}
|
|
1199
|
+
|
|
1172
1200
|
interface MaterialVariant extends Instance {
|
|
1173
1201
|
/**
|
|
1174
1202
|
* **DO NOT USE!**
|
|
@@ -5481,35 +5481,6 @@ declare namespace Enum {
|
|
|
5481
5481
|
}
|
|
5482
5482
|
export type ConnectionState = ConnectionState.Connected | ConnectionState.Disconnected;
|
|
5483
5483
|
|
|
5484
|
-
export namespace ContentSourceType {
|
|
5485
|
-
export interface None extends globalThis.EnumItem {
|
|
5486
|
-
Name: "None";
|
|
5487
|
-
Value: 0;
|
|
5488
|
-
EnumType: typeof globalThis.Enum.ContentSourceType;
|
|
5489
|
-
}
|
|
5490
|
-
|
|
5491
|
-
export const None: None;
|
|
5492
|
-
|
|
5493
|
-
export interface Uri extends globalThis.EnumItem {
|
|
5494
|
-
Name: "Uri";
|
|
5495
|
-
Value: 1;
|
|
5496
|
-
EnumType: typeof globalThis.Enum.ContentSourceType;
|
|
5497
|
-
}
|
|
5498
|
-
|
|
5499
|
-
export const Uri: Uri;
|
|
5500
|
-
|
|
5501
|
-
export interface Object extends globalThis.EnumItem {
|
|
5502
|
-
Name: "Object";
|
|
5503
|
-
Value: 2;
|
|
5504
|
-
EnumType: typeof globalThis.Enum.ContentSourceType;
|
|
5505
|
-
}
|
|
5506
|
-
|
|
5507
|
-
export const Object: Object;
|
|
5508
|
-
|
|
5509
|
-
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ContentSourceType>;
|
|
5510
|
-
}
|
|
5511
|
-
export type ContentSourceType = ContentSourceType.None | ContentSourceType.Uri | ContentSourceType.Object;
|
|
5512
|
-
|
|
5513
5484
|
export namespace ContextActionPriority {
|
|
5514
5485
|
export interface Low extends globalThis.EnumItem {
|
|
5515
5486
|
Name: "Low";
|
|
@@ -15387,17 +15358,9 @@ declare namespace Enum {
|
|
|
15387
15358
|
|
|
15388
15359
|
export const Bounce: Bounce;
|
|
15389
15360
|
|
|
15390
|
-
export interface CubicV2 extends globalThis.EnumItem {
|
|
15391
|
-
Name: "CubicV2";
|
|
15392
|
-
Value: 5;
|
|
15393
|
-
EnumType: typeof globalThis.Enum.PoseEasingStyle;
|
|
15394
|
-
}
|
|
15395
|
-
|
|
15396
|
-
export const CubicV2: CubicV2;
|
|
15397
|
-
|
|
15398
15361
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PoseEasingStyle>;
|
|
15399
15362
|
}
|
|
15400
|
-
export type PoseEasingStyle = PoseEasingStyle.Linear | PoseEasingStyle.Constant | PoseEasingStyle.Elastic | PoseEasingStyle.Cubic | PoseEasingStyle.Bounce
|
|
15363
|
+
export type PoseEasingStyle = PoseEasingStyle.Linear | PoseEasingStyle.Constant | PoseEasingStyle.Elastic | PoseEasingStyle.Cubic | PoseEasingStyle.Bounce;
|
|
15401
15364
|
|
|
15402
15365
|
export namespace PositionAlignmentMode {
|
|
15403
15366
|
export interface OneAttachment extends globalThis.EnumItem {
|
|
@@ -16888,35 +16851,6 @@ declare namespace Enum {
|
|
|
16888
16851
|
}
|
|
16889
16852
|
export type RollOffMode = RollOffMode.Inverse | RollOffMode.Linear | RollOffMode.LinearSquare | RollOffMode.InverseTapered;
|
|
16890
16853
|
|
|
16891
|
-
export namespace RolloutState {
|
|
16892
|
-
export interface Default extends globalThis.EnumItem {
|
|
16893
|
-
Name: "Default";
|
|
16894
|
-
Value: 0;
|
|
16895
|
-
EnumType: typeof globalThis.Enum.RolloutState;
|
|
16896
|
-
}
|
|
16897
|
-
|
|
16898
|
-
export const Default: Default;
|
|
16899
|
-
|
|
16900
|
-
export interface Disabled extends globalThis.EnumItem {
|
|
16901
|
-
Name: "Disabled";
|
|
16902
|
-
Value: 1;
|
|
16903
|
-
EnumType: typeof globalThis.Enum.RolloutState;
|
|
16904
|
-
}
|
|
16905
|
-
|
|
16906
|
-
export const Disabled: Disabled;
|
|
16907
|
-
|
|
16908
|
-
export interface Enabled extends globalThis.EnumItem {
|
|
16909
|
-
Name: "Enabled";
|
|
16910
|
-
Value: 2;
|
|
16911
|
-
EnumType: typeof globalThis.Enum.RolloutState;
|
|
16912
|
-
}
|
|
16913
|
-
|
|
16914
|
-
export const Enabled: Enabled;
|
|
16915
|
-
|
|
16916
|
-
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RolloutState>;
|
|
16917
|
-
}
|
|
16918
|
-
export type RolloutState = RolloutState.Default | RolloutState.Disabled | RolloutState.Enabled;
|
|
16919
|
-
|
|
16920
16854
|
export namespace RotationOrder {
|
|
16921
16855
|
export interface XYZ extends globalThis.EnumItem {
|
|
16922
16856
|
Name: "XYZ";
|