@rbxts/types 1.0.886 → 1.0.887
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 +17 -3
- package/include/generated/enums.d.ts +129 -12
- package/package.json +1 -1
|
@@ -2183,7 +2183,7 @@ interface Instance extends RBXObject {
|
|
|
2183
2183
|
*/
|
|
2184
2184
|
AddTag(this: Instance, tag: string): void;
|
|
2185
2185
|
/**
|
|
2186
|
-
* This
|
|
2186
|
+
* This method destroys all of an instance's children.
|
|
2187
2187
|
*
|
|
2188
2188
|
* - **ThreadSafety**: Unsafe
|
|
2189
2189
|
*
|
|
@@ -2436,14 +2436,14 @@ interface Instance extends RBXObject {
|
|
|
2436
2436
|
*/
|
|
2437
2437
|
IsPredicted(this: Instance): boolean;
|
|
2438
2438
|
/**
|
|
2439
|
-
* Returns `true` if the value stored in the specified property is equal to the code-instantiated default.
|
|
2439
|
+
* Returns `true` if the value stored in the specified property is not equal to the code-instantiated default.
|
|
2440
2440
|
*
|
|
2441
2441
|
* - **ThreadSafety**: Unsafe
|
|
2442
2442
|
*
|
|
2443
2443
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#IsPropertyModified)
|
|
2444
2444
|
* @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
|
|
2445
2445
|
* @param property Name of the property to query.
|
|
2446
|
-
* @returns Boolean indicating whether the property is modified.
|
|
2446
|
+
* @returns Boolean indicating whether the property is modified from its code‑instantiated default.
|
|
2447
2447
|
*/
|
|
2448
2448
|
IsPropertyModified(this: Instance, property: string): boolean;
|
|
2449
2449
|
/**
|
|
@@ -7330,6 +7330,13 @@ interface AvatarCreationService extends Instance {
|
|
|
7330
7330
|
* @returns A unique identifier for the generated avatar.
|
|
7331
7331
|
*/
|
|
7332
7332
|
AutoSetupAvatarAsync(this: AvatarCreationService, player: Player, model: Model, progressCallback?: Callback): string;
|
|
7333
|
+
/**
|
|
7334
|
+
* - **ThreadSafety**: Unsafe
|
|
7335
|
+
* - **Tags**: Yields
|
|
7336
|
+
*
|
|
7337
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#AutoSetupAvatarNewAsync)
|
|
7338
|
+
*/
|
|
7339
|
+
AutoSetupAvatarNewAsync(this: AvatarCreationService, player: Player, autoSetupParams: object, progressCallback?: Callback): string;
|
|
7333
7340
|
/**
|
|
7334
7341
|
* Creates a 2D avatar preview and returns a previewId.
|
|
7335
7342
|
*
|
|
@@ -33272,6 +33279,7 @@ interface Player extends Instance {
|
|
|
33272
33279
|
* Whether player client-side gameplay is currently paused.
|
|
33273
33280
|
*
|
|
33274
33281
|
* - **ThreadSafety**: ReadSafe
|
|
33282
|
+
* - **Tags**: Hidden
|
|
33275
33283
|
*
|
|
33276
33284
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#GameplayPaused)
|
|
33277
33285
|
*/
|
|
@@ -46499,6 +46507,12 @@ interface WebStreamClient extends RBXObject {
|
|
|
46499
46507
|
* @param this Maintains a streaming connection.
|
|
46500
46508
|
*/
|
|
46501
46509
|
Close(this: WebStreamClient): void;
|
|
46510
|
+
/**
|
|
46511
|
+
* - **ThreadSafety**: Unsafe
|
|
46512
|
+
*
|
|
46513
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WebStreamClient#Send)
|
|
46514
|
+
*/
|
|
46515
|
+
Send(this: WebStreamClient, data: string): void;
|
|
46502
46516
|
/**
|
|
46503
46517
|
* - **ThreadSafety**: Unsafe
|
|
46504
46518
|
*
|
|
@@ -6139,6 +6139,33 @@ declare namespace Enum {
|
|
|
6139
6139
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CatalogSortType | undefined;
|
|
6140
6140
|
}
|
|
6141
6141
|
export type CatalogSortType = CatalogSortType.Relevance | CatalogSortType.PriceHighToLow | CatalogSortType.PriceLowToHigh | CatalogSortType.MostFavorited | CatalogSortType.RecentlyCreated | CatalogSortType.Bestselling;
|
|
6142
|
+
/**
|
|
6143
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CatalogTimedOptionFilter)
|
|
6144
|
+
*/
|
|
6145
|
+
export namespace CatalogTimedOptionFilter {
|
|
6146
|
+
/**
|
|
6147
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CatalogTimedOptionFilter#All)
|
|
6148
|
+
*/
|
|
6149
|
+
export interface All extends globalThis.EnumItem {
|
|
6150
|
+
Name: "All";
|
|
6151
|
+
Value: 1;
|
|
6152
|
+
EnumType: typeof globalThis.Enum.CatalogTimedOptionFilter;
|
|
6153
|
+
}
|
|
6154
|
+
export const All: All;
|
|
6155
|
+
/**
|
|
6156
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CatalogTimedOptionFilter#TimedOptionOnly)
|
|
6157
|
+
*/
|
|
6158
|
+
export interface TimedOptionOnly extends globalThis.EnumItem {
|
|
6159
|
+
Name: "TimedOptionOnly";
|
|
6160
|
+
Value: 2;
|
|
6161
|
+
EnumType: typeof globalThis.Enum.CatalogTimedOptionFilter;
|
|
6162
|
+
}
|
|
6163
|
+
export const TimedOptionOnly: TimedOptionOnly;
|
|
6164
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CatalogTimedOptionFilter>;
|
|
6165
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CatalogTimedOptionFilter | undefined;
|
|
6166
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CatalogTimedOptionFilter | undefined;
|
|
6167
|
+
}
|
|
6168
|
+
export type CatalogTimedOptionFilter = CatalogTimedOptionFilter.All | CatalogTimedOptionFilter.TimedOptionOnly;
|
|
6142
6169
|
/**
|
|
6143
6170
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CellBlock)
|
|
6144
6171
|
*/
|
|
@@ -10027,11 +10054,20 @@ declare namespace Enum {
|
|
|
10027
10054
|
EnumType: typeof globalThis.Enum.DeviceFeatureType;
|
|
10028
10055
|
}
|
|
10029
10056
|
export const DeviceCapture: DeviceCapture;
|
|
10057
|
+
/**
|
|
10058
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DeviceFeatureType#InExperienceFAE)
|
|
10059
|
+
*/
|
|
10060
|
+
export interface InExperienceFAE extends globalThis.EnumItem {
|
|
10061
|
+
Name: "InExperienceFAE";
|
|
10062
|
+
Value: 1;
|
|
10063
|
+
EnumType: typeof globalThis.Enum.DeviceFeatureType;
|
|
10064
|
+
}
|
|
10065
|
+
export const InExperienceFAE: InExperienceFAE;
|
|
10030
10066
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DeviceFeatureType>;
|
|
10031
10067
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DeviceFeatureType | undefined;
|
|
10032
10068
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DeviceFeatureType | undefined;
|
|
10033
10069
|
}
|
|
10034
|
-
export type DeviceFeatureType = DeviceFeatureType.DeviceCapture;
|
|
10070
|
+
export type DeviceFeatureType = DeviceFeatureType.DeviceCapture | DeviceFeatureType.InExperienceFAE;
|
|
10035
10071
|
/**
|
|
10036
10072
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DeviceForm)
|
|
10037
10073
|
*/
|
|
@@ -17779,12 +17815,84 @@ declare namespace Enum {
|
|
|
17779
17815
|
EnumType: typeof globalThis.Enum.KeyCode;
|
|
17780
17816
|
}
|
|
17781
17817
|
export const Thumbstick2: Thumbstick2;
|
|
17818
|
+
/**
|
|
17819
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#Thumbstick1Up)
|
|
17820
|
+
*/
|
|
17821
|
+
export interface Thumbstick1Up extends globalThis.EnumItem {
|
|
17822
|
+
Name: "Thumbstick1Up";
|
|
17823
|
+
Value: 1018;
|
|
17824
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
17825
|
+
}
|
|
17826
|
+
export const Thumbstick1Up: Thumbstick1Up;
|
|
17827
|
+
/**
|
|
17828
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#Thumbstick1Down)
|
|
17829
|
+
*/
|
|
17830
|
+
export interface Thumbstick1Down extends globalThis.EnumItem {
|
|
17831
|
+
Name: "Thumbstick1Down";
|
|
17832
|
+
Value: 1019;
|
|
17833
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
17834
|
+
}
|
|
17835
|
+
export const Thumbstick1Down: Thumbstick1Down;
|
|
17836
|
+
/**
|
|
17837
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#Thumbstick1Left)
|
|
17838
|
+
*/
|
|
17839
|
+
export interface Thumbstick1Left extends globalThis.EnumItem {
|
|
17840
|
+
Name: "Thumbstick1Left";
|
|
17841
|
+
Value: 1020;
|
|
17842
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
17843
|
+
}
|
|
17844
|
+
export const Thumbstick1Left: Thumbstick1Left;
|
|
17845
|
+
/**
|
|
17846
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#Thumbstick1Right)
|
|
17847
|
+
*/
|
|
17848
|
+
export interface Thumbstick1Right extends globalThis.EnumItem {
|
|
17849
|
+
Name: "Thumbstick1Right";
|
|
17850
|
+
Value: 1021;
|
|
17851
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
17852
|
+
}
|
|
17853
|
+
export const Thumbstick1Right: Thumbstick1Right;
|
|
17854
|
+
/**
|
|
17855
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#Thumbstick2Up)
|
|
17856
|
+
*/
|
|
17857
|
+
export interface Thumbstick2Up extends globalThis.EnumItem {
|
|
17858
|
+
Name: "Thumbstick2Up";
|
|
17859
|
+
Value: 1022;
|
|
17860
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
17861
|
+
}
|
|
17862
|
+
export const Thumbstick2Up: Thumbstick2Up;
|
|
17863
|
+
/**
|
|
17864
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#Thumbstick2Down)
|
|
17865
|
+
*/
|
|
17866
|
+
export interface Thumbstick2Down extends globalThis.EnumItem {
|
|
17867
|
+
Name: "Thumbstick2Down";
|
|
17868
|
+
Value: 1023;
|
|
17869
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
17870
|
+
}
|
|
17871
|
+
export const Thumbstick2Down: Thumbstick2Down;
|
|
17872
|
+
/**
|
|
17873
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#Thumbstick2Left)
|
|
17874
|
+
*/
|
|
17875
|
+
export interface Thumbstick2Left extends globalThis.EnumItem {
|
|
17876
|
+
Name: "Thumbstick2Left";
|
|
17877
|
+
Value: 1024;
|
|
17878
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
17879
|
+
}
|
|
17880
|
+
export const Thumbstick2Left: Thumbstick2Left;
|
|
17881
|
+
/**
|
|
17882
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#Thumbstick2Right)
|
|
17883
|
+
*/
|
|
17884
|
+
export interface Thumbstick2Right extends globalThis.EnumItem {
|
|
17885
|
+
Name: "Thumbstick2Right";
|
|
17886
|
+
Value: 1025;
|
|
17887
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
17888
|
+
}
|
|
17889
|
+
export const Thumbstick2Right: Thumbstick2Right;
|
|
17782
17890
|
/**
|
|
17783
17891
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseLeftButton)
|
|
17784
17892
|
*/
|
|
17785
17893
|
export interface MouseLeftButton extends globalThis.EnumItem {
|
|
17786
17894
|
Name: "MouseLeftButton";
|
|
17787
|
-
Value:
|
|
17895
|
+
Value: 1026;
|
|
17788
17896
|
EnumType: typeof globalThis.Enum.KeyCode;
|
|
17789
17897
|
}
|
|
17790
17898
|
export const MouseLeftButton: MouseLeftButton;
|
|
@@ -17793,7 +17901,7 @@ declare namespace Enum {
|
|
|
17793
17901
|
*/
|
|
17794
17902
|
export interface MouseRightButton extends globalThis.EnumItem {
|
|
17795
17903
|
Name: "MouseRightButton";
|
|
17796
|
-
Value:
|
|
17904
|
+
Value: 1027;
|
|
17797
17905
|
EnumType: typeof globalThis.Enum.KeyCode;
|
|
17798
17906
|
}
|
|
17799
17907
|
export const MouseRightButton: MouseRightButton;
|
|
@@ -17802,7 +17910,7 @@ declare namespace Enum {
|
|
|
17802
17910
|
*/
|
|
17803
17911
|
export interface MouseMiddleButton extends globalThis.EnumItem {
|
|
17804
17912
|
Name: "MouseMiddleButton";
|
|
17805
|
-
Value:
|
|
17913
|
+
Value: 1028;
|
|
17806
17914
|
EnumType: typeof globalThis.Enum.KeyCode;
|
|
17807
17915
|
}
|
|
17808
17916
|
export const MouseMiddleButton: MouseMiddleButton;
|
|
@@ -17811,7 +17919,7 @@ declare namespace Enum {
|
|
|
17811
17919
|
*/
|
|
17812
17920
|
export interface MousePosition extends globalThis.EnumItem {
|
|
17813
17921
|
Name: "MousePosition";
|
|
17814
|
-
Value:
|
|
17922
|
+
Value: 1033;
|
|
17815
17923
|
EnumType: typeof globalThis.Enum.KeyCode;
|
|
17816
17924
|
}
|
|
17817
17925
|
export const MousePosition: MousePosition;
|
|
@@ -18878,7 +18986,7 @@ declare namespace Enum {
|
|
|
18878
18986
|
*/
|
|
18879
18987
|
export interface MouseBackButton extends globalThis.EnumItem {
|
|
18880
18988
|
Name: "MouseBackButton";
|
|
18881
|
-
Value:
|
|
18989
|
+
Value: 1029;
|
|
18882
18990
|
EnumType: typeof globalThis.Enum.KeyCode;
|
|
18883
18991
|
}
|
|
18884
18992
|
export const MouseBackButton: MouseBackButton;
|
|
@@ -18889,7 +18997,7 @@ declare namespace Enum {
|
|
|
18889
18997
|
*/
|
|
18890
18998
|
export interface MouseNoButton extends globalThis.EnumItem {
|
|
18891
18999
|
Name: "MouseNoButton";
|
|
18892
|
-
Value:
|
|
19000
|
+
Value: 1030;
|
|
18893
19001
|
EnumType: typeof globalThis.Enum.KeyCode;
|
|
18894
19002
|
}
|
|
18895
19003
|
export const MouseNoButton: MouseNoButton;
|
|
@@ -18900,7 +19008,7 @@ declare namespace Enum {
|
|
|
18900
19008
|
*/
|
|
18901
19009
|
export interface MouseX extends globalThis.EnumItem {
|
|
18902
19010
|
Name: "MouseX";
|
|
18903
|
-
Value:
|
|
19011
|
+
Value: 1031;
|
|
18904
19012
|
EnumType: typeof globalThis.Enum.KeyCode;
|
|
18905
19013
|
}
|
|
18906
19014
|
export const MouseX: MouseX;
|
|
@@ -18911,7 +19019,7 @@ declare namespace Enum {
|
|
|
18911
19019
|
*/
|
|
18912
19020
|
export interface MouseY extends globalThis.EnumItem {
|
|
18913
19021
|
Name: "MouseY";
|
|
18914
|
-
Value:
|
|
19022
|
+
Value: 1032;
|
|
18915
19023
|
EnumType: typeof globalThis.Enum.KeyCode;
|
|
18916
19024
|
}
|
|
18917
19025
|
export const MouseY: MouseY;
|
|
@@ -18919,7 +19027,7 @@ declare namespace Enum {
|
|
|
18919
19027
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.KeyCode | undefined;
|
|
18920
19028
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.KeyCode | undefined;
|
|
18921
19029
|
}
|
|
18922
|
-
export type KeyCode = KeyCode.Unknown | KeyCode.Backspace | KeyCode.Tab | KeyCode.Clear | KeyCode.Return | KeyCode.Pause | KeyCode.Escape | KeyCode.Space | KeyCode.QuotedDouble | KeyCode.Hash | KeyCode.Dollar | KeyCode.Percent | KeyCode.Ampersand | KeyCode.Quote | KeyCode.LeftParenthesis | KeyCode.RightParenthesis | KeyCode.Asterisk | KeyCode.Plus | KeyCode.Comma | KeyCode.Minus | KeyCode.Period | KeyCode.Slash | KeyCode.Zero | KeyCode.One | KeyCode.Two | KeyCode.Three | KeyCode.Four | KeyCode.Five | KeyCode.Six | KeyCode.Seven | KeyCode.Eight | KeyCode.Nine | KeyCode.Colon | KeyCode.Semicolon | KeyCode.LessThan | KeyCode.Equals | KeyCode.GreaterThan | KeyCode.Question | KeyCode.At | KeyCode.LeftBracket | KeyCode.BackSlash | KeyCode.RightBracket | KeyCode.Caret | KeyCode.Underscore | KeyCode.Backquote | KeyCode.A | KeyCode.B | KeyCode.C | KeyCode.D | KeyCode.E | KeyCode.F | KeyCode.G | KeyCode.H | KeyCode.I | KeyCode.J | KeyCode.K | KeyCode.L | KeyCode.M | KeyCode.N | KeyCode.O | KeyCode.P | KeyCode.Q | KeyCode.R | KeyCode.S | KeyCode.T | KeyCode.U | KeyCode.V | KeyCode.W | KeyCode.X | KeyCode.Y | KeyCode.Z | KeyCode.LeftCurly | KeyCode.Pipe | KeyCode.RightCurly | KeyCode.Tilde | KeyCode.Delete | KeyCode.KeypadZero | KeyCode.KeypadOne | KeyCode.KeypadTwo | KeyCode.KeypadThree | KeyCode.KeypadFour | KeyCode.KeypadFive | KeyCode.KeypadSix | KeyCode.KeypadSeven | KeyCode.KeypadEight | KeyCode.KeypadNine | KeyCode.KeypadPeriod | KeyCode.KeypadDivide | KeyCode.KeypadMultiply | KeyCode.KeypadMinus | KeyCode.KeypadPlus | KeyCode.KeypadEnter | KeyCode.KeypadEquals | KeyCode.Up | KeyCode.Down | KeyCode.Right | KeyCode.Left | KeyCode.Insert | KeyCode.Home | KeyCode.End | KeyCode.PageUp | KeyCode.PageDown | KeyCode.F1 | KeyCode.F2 | KeyCode.F3 | KeyCode.F4 | KeyCode.F5 | KeyCode.F6 | KeyCode.F7 | KeyCode.F8 | KeyCode.F9 | KeyCode.F10 | KeyCode.F11 | KeyCode.F12 | KeyCode.F13 | KeyCode.F14 | KeyCode.F15 | KeyCode.NumLock | KeyCode.CapsLock | KeyCode.ScrollLock | KeyCode.RightShift | KeyCode.LeftShift | KeyCode.RightControl | KeyCode.LeftControl | KeyCode.RightAlt | KeyCode.LeftAlt | KeyCode.RightMeta | KeyCode.LeftMeta | KeyCode.LeftSuper | KeyCode.RightSuper | KeyCode.Mode | KeyCode.Compose | KeyCode.Help | KeyCode.Print | KeyCode.SysReq | KeyCode.Break | KeyCode.Menu | KeyCode.Power | KeyCode.Euro | KeyCode.Undo | KeyCode.ButtonX | KeyCode.ButtonY | KeyCode.ButtonA | KeyCode.ButtonB | KeyCode.ButtonR1 | KeyCode.ButtonL1 | KeyCode.ButtonR2 | KeyCode.ButtonL2 | KeyCode.ButtonR3 | KeyCode.ButtonL3 | KeyCode.ButtonStart | KeyCode.ButtonSelect | KeyCode.DPadLeft | KeyCode.DPadRight | KeyCode.DPadUp | KeyCode.DPadDown | KeyCode.Thumbstick1 | KeyCode.Thumbstick2 | KeyCode.MouseLeftButton | KeyCode.MouseRightButton | KeyCode.MouseMiddleButton | KeyCode.MousePosition | KeyCode.World0 | KeyCode.World1 | KeyCode.World2 | KeyCode.World3 | KeyCode.World4 | KeyCode.World5 | KeyCode.World6 | KeyCode.World7 | KeyCode.World8 | KeyCode.World9 | KeyCode.World10 | KeyCode.World11 | KeyCode.World12 | KeyCode.World13 | KeyCode.World14 | KeyCode.World15 | KeyCode.World16 | KeyCode.World17 | KeyCode.World18 | KeyCode.World19 | KeyCode.World20 | KeyCode.World21 | KeyCode.World22 | KeyCode.World23 | KeyCode.World24 | KeyCode.World25 | KeyCode.World26 | KeyCode.World27 | KeyCode.World28 | KeyCode.World29 | KeyCode.World30 | KeyCode.World31 | KeyCode.World32 | KeyCode.World33 | KeyCode.World34 | KeyCode.World35 | KeyCode.World36 | KeyCode.World37 | KeyCode.World38 | KeyCode.World39 | KeyCode.World40 | KeyCode.World41 | KeyCode.World42 | KeyCode.World43 | KeyCode.World44 | KeyCode.World45 | KeyCode.World46 | KeyCode.World47 | KeyCode.World48 | KeyCode.World49 | KeyCode.World50 | KeyCode.World51 | KeyCode.World52 | KeyCode.World53 | KeyCode.World54 | KeyCode.World55 | KeyCode.World56 | KeyCode.World57 | KeyCode.World58 | KeyCode.World59 | KeyCode.World60 | KeyCode.World61 | KeyCode.World62 | KeyCode.World63 | KeyCode.World64 | KeyCode.World65 | KeyCode.World66 | KeyCode.World67 | KeyCode.World68 | KeyCode.World69 | KeyCode.World70 | KeyCode.World71 | KeyCode.World72 | KeyCode.World73 | KeyCode.World74 | KeyCode.World75 | KeyCode.World76 | KeyCode.World77 | KeyCode.World78 | KeyCode.World79 | KeyCode.World80 | KeyCode.World81 | KeyCode.World82 | KeyCode.World83 | KeyCode.World84 | KeyCode.World85 | KeyCode.World86 | KeyCode.World87 | KeyCode.World88 | KeyCode.World89 | KeyCode.World90 | KeyCode.World91 | KeyCode.World92 | KeyCode.World93 | KeyCode.World94 | KeyCode.World95 | KeyCode.MouseBackButton | KeyCode.MouseNoButton | KeyCode.MouseX | KeyCode.MouseY;
|
|
19030
|
+
export type KeyCode = KeyCode.Unknown | KeyCode.Backspace | KeyCode.Tab | KeyCode.Clear | KeyCode.Return | KeyCode.Pause | KeyCode.Escape | KeyCode.Space | KeyCode.QuotedDouble | KeyCode.Hash | KeyCode.Dollar | KeyCode.Percent | KeyCode.Ampersand | KeyCode.Quote | KeyCode.LeftParenthesis | KeyCode.RightParenthesis | KeyCode.Asterisk | KeyCode.Plus | KeyCode.Comma | KeyCode.Minus | KeyCode.Period | KeyCode.Slash | KeyCode.Zero | KeyCode.One | KeyCode.Two | KeyCode.Three | KeyCode.Four | KeyCode.Five | KeyCode.Six | KeyCode.Seven | KeyCode.Eight | KeyCode.Nine | KeyCode.Colon | KeyCode.Semicolon | KeyCode.LessThan | KeyCode.Equals | KeyCode.GreaterThan | KeyCode.Question | KeyCode.At | KeyCode.LeftBracket | KeyCode.BackSlash | KeyCode.RightBracket | KeyCode.Caret | KeyCode.Underscore | KeyCode.Backquote | KeyCode.A | KeyCode.B | KeyCode.C | KeyCode.D | KeyCode.E | KeyCode.F | KeyCode.G | KeyCode.H | KeyCode.I | KeyCode.J | KeyCode.K | KeyCode.L | KeyCode.M | KeyCode.N | KeyCode.O | KeyCode.P | KeyCode.Q | KeyCode.R | KeyCode.S | KeyCode.T | KeyCode.U | KeyCode.V | KeyCode.W | KeyCode.X | KeyCode.Y | KeyCode.Z | KeyCode.LeftCurly | KeyCode.Pipe | KeyCode.RightCurly | KeyCode.Tilde | KeyCode.Delete | KeyCode.KeypadZero | KeyCode.KeypadOne | KeyCode.KeypadTwo | KeyCode.KeypadThree | KeyCode.KeypadFour | KeyCode.KeypadFive | KeyCode.KeypadSix | KeyCode.KeypadSeven | KeyCode.KeypadEight | KeyCode.KeypadNine | KeyCode.KeypadPeriod | KeyCode.KeypadDivide | KeyCode.KeypadMultiply | KeyCode.KeypadMinus | KeyCode.KeypadPlus | KeyCode.KeypadEnter | KeyCode.KeypadEquals | KeyCode.Up | KeyCode.Down | KeyCode.Right | KeyCode.Left | KeyCode.Insert | KeyCode.Home | KeyCode.End | KeyCode.PageUp | KeyCode.PageDown | KeyCode.F1 | KeyCode.F2 | KeyCode.F3 | KeyCode.F4 | KeyCode.F5 | KeyCode.F6 | KeyCode.F7 | KeyCode.F8 | KeyCode.F9 | KeyCode.F10 | KeyCode.F11 | KeyCode.F12 | KeyCode.F13 | KeyCode.F14 | KeyCode.F15 | KeyCode.NumLock | KeyCode.CapsLock | KeyCode.ScrollLock | KeyCode.RightShift | KeyCode.LeftShift | KeyCode.RightControl | KeyCode.LeftControl | KeyCode.RightAlt | KeyCode.LeftAlt | KeyCode.RightMeta | KeyCode.LeftMeta | KeyCode.LeftSuper | KeyCode.RightSuper | KeyCode.Mode | KeyCode.Compose | KeyCode.Help | KeyCode.Print | KeyCode.SysReq | KeyCode.Break | KeyCode.Menu | KeyCode.Power | KeyCode.Euro | KeyCode.Undo | KeyCode.ButtonX | KeyCode.ButtonY | KeyCode.ButtonA | KeyCode.ButtonB | KeyCode.ButtonR1 | KeyCode.ButtonL1 | KeyCode.ButtonR2 | KeyCode.ButtonL2 | KeyCode.ButtonR3 | KeyCode.ButtonL3 | KeyCode.ButtonStart | KeyCode.ButtonSelect | KeyCode.DPadLeft | KeyCode.DPadRight | KeyCode.DPadUp | KeyCode.DPadDown | KeyCode.Thumbstick1 | KeyCode.Thumbstick2 | KeyCode.Thumbstick1Up | KeyCode.Thumbstick1Down | KeyCode.Thumbstick1Left | KeyCode.Thumbstick1Right | KeyCode.Thumbstick2Up | KeyCode.Thumbstick2Down | KeyCode.Thumbstick2Left | KeyCode.Thumbstick2Right | KeyCode.MouseLeftButton | KeyCode.MouseRightButton | KeyCode.MouseMiddleButton | KeyCode.MousePosition | KeyCode.World0 | KeyCode.World1 | KeyCode.World2 | KeyCode.World3 | KeyCode.World4 | KeyCode.World5 | KeyCode.World6 | KeyCode.World7 | KeyCode.World8 | KeyCode.World9 | KeyCode.World10 | KeyCode.World11 | KeyCode.World12 | KeyCode.World13 | KeyCode.World14 | KeyCode.World15 | KeyCode.World16 | KeyCode.World17 | KeyCode.World18 | KeyCode.World19 | KeyCode.World20 | KeyCode.World21 | KeyCode.World22 | KeyCode.World23 | KeyCode.World24 | KeyCode.World25 | KeyCode.World26 | KeyCode.World27 | KeyCode.World28 | KeyCode.World29 | KeyCode.World30 | KeyCode.World31 | KeyCode.World32 | KeyCode.World33 | KeyCode.World34 | KeyCode.World35 | KeyCode.World36 | KeyCode.World37 | KeyCode.World38 | KeyCode.World39 | KeyCode.World40 | KeyCode.World41 | KeyCode.World42 | KeyCode.World43 | KeyCode.World44 | KeyCode.World45 | KeyCode.World46 | KeyCode.World47 | KeyCode.World48 | KeyCode.World49 | KeyCode.World50 | KeyCode.World51 | KeyCode.World52 | KeyCode.World53 | KeyCode.World54 | KeyCode.World55 | KeyCode.World56 | KeyCode.World57 | KeyCode.World58 | KeyCode.World59 | KeyCode.World60 | KeyCode.World61 | KeyCode.World62 | KeyCode.World63 | KeyCode.World64 | KeyCode.World65 | KeyCode.World66 | KeyCode.World67 | KeyCode.World68 | KeyCode.World69 | KeyCode.World70 | KeyCode.World71 | KeyCode.World72 | KeyCode.World73 | KeyCode.World74 | KeyCode.World75 | KeyCode.World76 | KeyCode.World77 | KeyCode.World78 | KeyCode.World79 | KeyCode.World80 | KeyCode.World81 | KeyCode.World82 | KeyCode.World83 | KeyCode.World84 | KeyCode.World85 | KeyCode.World86 | KeyCode.World87 | KeyCode.World88 | KeyCode.World89 | KeyCode.World90 | KeyCode.World91 | KeyCode.World92 | KeyCode.World93 | KeyCode.World94 | KeyCode.World95 | KeyCode.MouseBackButton | KeyCode.MouseNoButton | KeyCode.MouseX | KeyCode.MouseY;
|
|
18923
19031
|
/**
|
|
18924
19032
|
* Describes the interpolation method between two keys.
|
|
18925
19033
|
*
|
|
@@ -20297,7 +20405,7 @@ declare namespace Enum {
|
|
|
20297
20405
|
}
|
|
20298
20406
|
export const Pavement: Pavement;
|
|
20299
20407
|
/**
|
|
20300
|
-
* Applies to `BasePart`
|
|
20408
|
+
* Applies to `BasePart` only.
|
|
20301
20409
|
*
|
|
20302
20410
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/Material#CorrodedMetal)
|
|
20303
20411
|
*/
|
|
@@ -35915,11 +36023,20 @@ declare namespace Enum {
|
|
|
35915
36023
|
EnumType: typeof globalThis.Enum.WebStreamClientType;
|
|
35916
36024
|
}
|
|
35917
36025
|
export const RawStream: RawStream;
|
|
36026
|
+
/**
|
|
36027
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WebStreamClientType#WebSocket)
|
|
36028
|
+
*/
|
|
36029
|
+
export interface WebSocket extends globalThis.EnumItem {
|
|
36030
|
+
Name: "WebSocket";
|
|
36031
|
+
Value: 2;
|
|
36032
|
+
EnumType: typeof globalThis.Enum.WebStreamClientType;
|
|
36033
|
+
}
|
|
36034
|
+
export const WebSocket: WebSocket;
|
|
35918
36035
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.WebStreamClientType>;
|
|
35919
36036
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.WebStreamClientType | undefined;
|
|
35920
36037
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.WebStreamClientType | undefined;
|
|
35921
36038
|
}
|
|
35922
|
-
export type WebStreamClientType = WebStreamClientType.SSE | WebStreamClientType.RawStream;
|
|
36039
|
+
export type WebStreamClientType = WebStreamClientType.SSE | WebStreamClientType.RawStream | WebStreamClientType.WebSocket;
|
|
35923
36040
|
/**
|
|
35924
36041
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WeldConstraintPreserve)
|
|
35925
36042
|
*/
|