@rbxts/types 1.0.941 → 1.0.942
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 +176 -95
- package/include/generated/PluginSecurity.d.ts +178 -14
- package/include/generated/enums.d.ts +176 -0
- package/package.json +1 -1
|
@@ -3620,6 +3620,8 @@ declare namespace Enum {
|
|
|
3620
3620
|
}
|
|
3621
3621
|
export const AvatarBackground: AvatarBackground;
|
|
3622
3622
|
/**
|
|
3623
|
+
* The asset is a text document.
|
|
3624
|
+
*
|
|
3623
3625
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#TextDocument)
|
|
3624
3626
|
*/
|
|
3625
3627
|
export interface TextDocument extends globalThis.EnumItem {
|
|
@@ -10223,6 +10225,51 @@ declare namespace Enum {
|
|
|
10223
10225
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CustomCameraMode | undefined;
|
|
10224
10226
|
}
|
|
10225
10227
|
export type CustomCameraMode = CustomCameraMode.Default | CustomCameraMode.Classic | CustomCameraMode.Follow;
|
|
10228
|
+
/**
|
|
10229
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataModelChangeType)
|
|
10230
|
+
*/
|
|
10231
|
+
export namespace DataModelChangeType {
|
|
10232
|
+
/**
|
|
10233
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataModelChangeType#Add)
|
|
10234
|
+
*/
|
|
10235
|
+
export interface Add extends globalThis.EnumItem {
|
|
10236
|
+
Name: "Add";
|
|
10237
|
+
Value: 0;
|
|
10238
|
+
EnumType: typeof globalThis.Enum.DataModelChangeType;
|
|
10239
|
+
}
|
|
10240
|
+
export const Add: Add;
|
|
10241
|
+
/**
|
|
10242
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataModelChangeType#Remove)
|
|
10243
|
+
*/
|
|
10244
|
+
export interface Remove extends globalThis.EnumItem {
|
|
10245
|
+
Name: "Remove";
|
|
10246
|
+
Value: 1;
|
|
10247
|
+
EnumType: typeof globalThis.Enum.DataModelChangeType;
|
|
10248
|
+
}
|
|
10249
|
+
export const Remove: Remove;
|
|
10250
|
+
/**
|
|
10251
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataModelChangeType#Modify)
|
|
10252
|
+
*/
|
|
10253
|
+
export interface Modify extends globalThis.EnumItem {
|
|
10254
|
+
Name: "Modify";
|
|
10255
|
+
Value: 2;
|
|
10256
|
+
EnumType: typeof globalThis.Enum.DataModelChangeType;
|
|
10257
|
+
}
|
|
10258
|
+
export const Modify: Modify;
|
|
10259
|
+
/**
|
|
10260
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataModelChangeType#AddPackage)
|
|
10261
|
+
*/
|
|
10262
|
+
export interface AddPackage extends globalThis.EnumItem {
|
|
10263
|
+
Name: "AddPackage";
|
|
10264
|
+
Value: 3;
|
|
10265
|
+
EnumType: typeof globalThis.Enum.DataModelChangeType;
|
|
10266
|
+
}
|
|
10267
|
+
export const AddPackage: AddPackage;
|
|
10268
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DataModelChangeType>;
|
|
10269
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DataModelChangeType | undefined;
|
|
10270
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DataModelChangeType | undefined;
|
|
10271
|
+
}
|
|
10272
|
+
export type DataModelChangeType = DataModelChangeType.Add | DataModelChangeType.Remove | DataModelChangeType.Modify | DataModelChangeType.AddPackage;
|
|
10226
10273
|
/**
|
|
10227
10274
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataModelExtractorFileType)
|
|
10228
10275
|
*/
|
|
@@ -21596,6 +21643,8 @@ declare namespace Enum {
|
|
|
21596
21643
|
}
|
|
21597
21644
|
export const TouchPinch: TouchPinch;
|
|
21598
21645
|
/**
|
|
21646
|
+
* TV remote `Center` button.
|
|
21647
|
+
*
|
|
21599
21648
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#ButtonCenter)
|
|
21600
21649
|
*/
|
|
21601
21650
|
export interface ButtonCenter extends globalThis.EnumItem {
|
|
@@ -21605,6 +21654,8 @@ declare namespace Enum {
|
|
|
21605
21654
|
}
|
|
21606
21655
|
export const ButtonCenter: ButtonCenter;
|
|
21607
21656
|
/**
|
|
21657
|
+
* TV remote `Back` button.
|
|
21658
|
+
*
|
|
21608
21659
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#ButtonBack)
|
|
21609
21660
|
*/
|
|
21610
21661
|
export interface ButtonBack extends globalThis.EnumItem {
|
|
@@ -21614,6 +21665,8 @@ declare namespace Enum {
|
|
|
21614
21665
|
}
|
|
21615
21666
|
export const ButtonBack: ButtonBack;
|
|
21616
21667
|
/**
|
|
21668
|
+
* `MicroGamepad` (including TV remotes) `Up` directional button.
|
|
21669
|
+
*
|
|
21617
21670
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#ButtonUp)
|
|
21618
21671
|
*/
|
|
21619
21672
|
export interface ButtonUp extends globalThis.EnumItem {
|
|
@@ -21623,6 +21676,8 @@ declare namespace Enum {
|
|
|
21623
21676
|
}
|
|
21624
21677
|
export const ButtonUp: ButtonUp;
|
|
21625
21678
|
/**
|
|
21679
|
+
* `MicroGamepad` (including TV remotes) `Down` directional button.
|
|
21680
|
+
*
|
|
21626
21681
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#ButtonDown)
|
|
21627
21682
|
*/
|
|
21628
21683
|
export interface ButtonDown extends globalThis.EnumItem {
|
|
@@ -21632,6 +21687,8 @@ declare namespace Enum {
|
|
|
21632
21687
|
}
|
|
21633
21688
|
export const ButtonDown: ButtonDown;
|
|
21634
21689
|
/**
|
|
21690
|
+
* `MicroGamepad` (including TV remotes) `Left` directional button.
|
|
21691
|
+
*
|
|
21635
21692
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#ButtonLeft)
|
|
21636
21693
|
*/
|
|
21637
21694
|
export interface ButtonLeft extends globalThis.EnumItem {
|
|
@@ -21641,6 +21698,8 @@ declare namespace Enum {
|
|
|
21641
21698
|
}
|
|
21642
21699
|
export const ButtonLeft: ButtonLeft;
|
|
21643
21700
|
/**
|
|
21701
|
+
* `MicroGamepad` (including TV remotes) `Right` directional button.
|
|
21702
|
+
*
|
|
21644
21703
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#ButtonRight)
|
|
21645
21704
|
*/
|
|
21646
21705
|
export interface ButtonRight extends globalThis.EnumItem {
|
|
@@ -27197,6 +27256,8 @@ declare namespace Enum {
|
|
|
27197
27256
|
}
|
|
27198
27257
|
export const Touch: Touch;
|
|
27199
27258
|
/**
|
|
27259
|
+
* The player has connected or most recently interacted with a gamepad without a thumbstick (for example, a TV remote or another limited-input gamepad), and no standard gamepad is currently connected.
|
|
27260
|
+
*
|
|
27200
27261
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PreferredInput#MicroGamepad)
|
|
27201
27262
|
*/
|
|
27202
27263
|
export interface MicroGamepad extends globalThis.EnumItem {
|
|
@@ -32640,6 +32701,94 @@ declare namespace Enum {
|
|
|
32640
32701
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SlimTintMode | undefined;
|
|
32641
32702
|
}
|
|
32642
32703
|
export type SlimTintMode = SlimTintMode.None | SlimTintMode.LOD | SlimTintMode.Meshes | SlimTintMode.Zone;
|
|
32704
|
+
/**
|
|
32705
|
+
* Describes the backend transcoding state of a SLIM model, from upload through transcoding to success or failure.
|
|
32706
|
+
*
|
|
32707
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTranscoderStatus)
|
|
32708
|
+
*/
|
|
32709
|
+
export namespace SlimTranscoderStatus {
|
|
32710
|
+
/**
|
|
32711
|
+
* The transcoding status has not yet been determined. This is the initial state before the model has been queried. Shown as magenta in the debug tint overlay.
|
|
32712
|
+
*
|
|
32713
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTranscoderStatus#Unknown)
|
|
32714
|
+
*/
|
|
32715
|
+
export interface Unknown extends globalThis.EnumItem {
|
|
32716
|
+
Name: "Unknown";
|
|
32717
|
+
Value: 0;
|
|
32718
|
+
EnumType: typeof globalThis.Enum.SlimTranscoderStatus;
|
|
32719
|
+
}
|
|
32720
|
+
export const Unknown: Unknown;
|
|
32721
|
+
/**
|
|
32722
|
+
* The model is SLIM-enabled but does not yet have a generated hash, so transcoding has not been requested. Shown as cyan in the debug tint overlay.
|
|
32723
|
+
*
|
|
32724
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTranscoderStatus#NoHash)
|
|
32725
|
+
*/
|
|
32726
|
+
export interface NoHash extends globalThis.EnumItem {
|
|
32727
|
+
Name: "NoHash";
|
|
32728
|
+
Value: 1;
|
|
32729
|
+
EnumType: typeof globalThis.Enum.SlimTranscoderStatus;
|
|
32730
|
+
}
|
|
32731
|
+
export const NoHash: NoHash;
|
|
32732
|
+
/**
|
|
32733
|
+
* The model's property set has not been uploaded to the content-delivery network. Shown as orange in the debug tint overlay.
|
|
32734
|
+
*
|
|
32735
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTranscoderStatus#NotUploaded)
|
|
32736
|
+
*/
|
|
32737
|
+
export interface NotUploaded extends globalThis.EnumItem {
|
|
32738
|
+
Name: "NotUploaded";
|
|
32739
|
+
Value: 2;
|
|
32740
|
+
EnumType: typeof globalThis.Enum.SlimTranscoderStatus;
|
|
32741
|
+
}
|
|
32742
|
+
export const NotUploaded: NotUploaded;
|
|
32743
|
+
/**
|
|
32744
|
+
* The property set has been uploaded to the content-delivery network but has not yet been transcoded into SLIM assets. Shown as yellow in the debug tint overlay.
|
|
32745
|
+
*
|
|
32746
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTranscoderStatus#Uploaded)
|
|
32747
|
+
*/
|
|
32748
|
+
export interface Uploaded extends globalThis.EnumItem {
|
|
32749
|
+
Name: "Uploaded";
|
|
32750
|
+
Value: 3;
|
|
32751
|
+
EnumType: typeof globalThis.Enum.SlimTranscoderStatus;
|
|
32752
|
+
}
|
|
32753
|
+
export const Uploaded: Uploaded;
|
|
32754
|
+
/**
|
|
32755
|
+
* SLIM transcoding is currently in progress on the backend. The model is expected to transition to Succeeded or Failed once transcoding completes. Shown as blue in the debug tint overlay.
|
|
32756
|
+
*
|
|
32757
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTranscoderStatus#InProgress)
|
|
32758
|
+
*/
|
|
32759
|
+
export interface InProgress extends globalThis.EnumItem {
|
|
32760
|
+
Name: "InProgress";
|
|
32761
|
+
Value: 4;
|
|
32762
|
+
EnumType: typeof globalThis.Enum.SlimTranscoderStatus;
|
|
32763
|
+
}
|
|
32764
|
+
export const InProgress: InProgress;
|
|
32765
|
+
/**
|
|
32766
|
+
* Transcoding completed successfully and the SLIM assets are available for streaming. Shown as green in the debug tint overlay.
|
|
32767
|
+
*
|
|
32768
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTranscoderStatus#Succeeded)
|
|
32769
|
+
*/
|
|
32770
|
+
export interface Succeeded extends globalThis.EnumItem {
|
|
32771
|
+
Name: "Succeeded";
|
|
32772
|
+
Value: 5;
|
|
32773
|
+
EnumType: typeof globalThis.Enum.SlimTranscoderStatus;
|
|
32774
|
+
}
|
|
32775
|
+
export const Succeeded: Succeeded;
|
|
32776
|
+
/**
|
|
32777
|
+
* Transcoding did not complete successfully. Shown as red in the debug tint overlay.
|
|
32778
|
+
*
|
|
32779
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTranscoderStatus#Failed)
|
|
32780
|
+
*/
|
|
32781
|
+
export interface Failed extends globalThis.EnumItem {
|
|
32782
|
+
Name: "Failed";
|
|
32783
|
+
Value: 6;
|
|
32784
|
+
EnumType: typeof globalThis.Enum.SlimTranscoderStatus;
|
|
32785
|
+
}
|
|
32786
|
+
export const Failed: Failed;
|
|
32787
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SlimTranscoderStatus>;
|
|
32788
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SlimTranscoderStatus | undefined;
|
|
32789
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SlimTranscoderStatus | undefined;
|
|
32790
|
+
}
|
|
32791
|
+
export type SlimTranscoderStatus = SlimTranscoderStatus.Unknown | SlimTranscoderStatus.NoHash | SlimTranscoderStatus.NotUploaded | SlimTranscoderStatus.Uploaded | SlimTranscoderStatus.InProgress | SlimTranscoderStatus.Succeeded | SlimTranscoderStatus.Failed;
|
|
32643
32792
|
/**
|
|
32644
32793
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SolidPrimitiveType)
|
|
32645
32794
|
*/
|
|
@@ -40170,6 +40319,33 @@ declare namespace Enum {
|
|
|
40170
40319
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VelocityConstraintMode | undefined;
|
|
40171
40320
|
}
|
|
40172
40321
|
export type VelocityConstraintMode = VelocityConstraintMode.Line | VelocityConstraintMode.Plane | VelocityConstraintMode.Vector;
|
|
40322
|
+
/**
|
|
40323
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VerifiedLevel)
|
|
40324
|
+
*/
|
|
40325
|
+
export namespace VerifiedLevel {
|
|
40326
|
+
/**
|
|
40327
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VerifiedLevel#Low)
|
|
40328
|
+
*/
|
|
40329
|
+
export interface Low extends globalThis.EnumItem {
|
|
40330
|
+
Name: "Low";
|
|
40331
|
+
Value: 0;
|
|
40332
|
+
EnumType: typeof globalThis.Enum.VerifiedLevel;
|
|
40333
|
+
}
|
|
40334
|
+
export const Low: Low;
|
|
40335
|
+
/**
|
|
40336
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VerifiedLevel#High)
|
|
40337
|
+
*/
|
|
40338
|
+
export interface High extends globalThis.EnumItem {
|
|
40339
|
+
Name: "High";
|
|
40340
|
+
Value: 1;
|
|
40341
|
+
EnumType: typeof globalThis.Enum.VerifiedLevel;
|
|
40342
|
+
}
|
|
40343
|
+
export const High: High;
|
|
40344
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VerifiedLevel>;
|
|
40345
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VerifiedLevel | undefined;
|
|
40346
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VerifiedLevel | undefined;
|
|
40347
|
+
}
|
|
40348
|
+
export type VerifiedLevel = VerifiedLevel.Low | VerifiedLevel.High;
|
|
40173
40349
|
/**
|
|
40174
40350
|
* Used by `UIGridStyleLayout.VerticalAlignment` to align the layout vertically within its parent.
|
|
40175
40351
|
*
|