@rbxts/types 1.0.817 → 1.0.819

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.
@@ -11,6 +11,8 @@ interface EnumItem {
11
11
  }
12
12
  interface Enum {
13
13
  GetEnumItems(this: Enum): Array<EnumItem>;
14
+ FromName(this: Enum, name: string): EnumItem | undefined;
15
+ FromValue(this: Enum, value: number): EnumItem | undefined;
14
16
  }
15
17
  declare namespace Enum {
16
18
  export function GetEnums(this: Enums): Array<Enum>;
@@ -37,6 +39,8 @@ declare namespace Enum {
37
39
  }
38
40
  export const Deny: Deny;
39
41
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AccessModifierType>;
42
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AccessModifierType | undefined;
43
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AccessModifierType | undefined;
40
44
  }
41
45
  export type AccessModifierType = AccessModifierType.Allow | AccessModifierType.Deny;
42
46
  /**
@@ -266,6 +270,8 @@ declare namespace Enum {
266
270
  }
267
271
  export const Eyelash: Eyelash;
268
272
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AccessoryType>;
273
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AccessoryType | undefined;
274
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AccessoryType | undefined;
269
275
  }
270
276
  export type AccessoryType = AccessoryType.Unknown | AccessoryType.Hat | AccessoryType.Hair | AccessoryType.Face | AccessoryType.Neck | AccessoryType.Shoulder | AccessoryType.Front | AccessoryType.Back | AccessoryType.Waist | AccessoryType.TShirt | AccessoryType.Shirt | AccessoryType.Pants | AccessoryType.Jacket | AccessoryType.Sweater | AccessoryType.Shorts | AccessoryType.LeftShoe | AccessoryType.RightShoe | AccessoryType.DressSkirt | AccessoryType.Eyebrow | AccessoryType.Eyelash;
271
277
  /**
@@ -300,6 +306,8 @@ declare namespace Enum {
300
306
  }
301
307
  export const DeleteLocalFiles: DeleteLocalFiles;
302
308
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ActionOnStopSync>;
309
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ActionOnStopSync | undefined;
310
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ActionOnStopSync | undefined;
303
311
  }
304
312
  export type ActionOnStopSync = ActionOnStopSync.AlwaysAsk | ActionOnStopSync.KeepLocalFiles | ActionOnStopSync.DeleteLocalFiles;
305
313
  /**
@@ -352,6 +360,8 @@ declare namespace Enum {
352
360
  }
353
361
  export const Win: Win;
354
362
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ActionType>;
363
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ActionType | undefined;
364
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ActionType | undefined;
355
365
  }
356
366
  export type ActionType = ActionType.Nothing | ActionType.Pause | ActionType.Lose | ActionType.Draw | ActionType.Win;
357
367
  /**
@@ -394,6 +404,8 @@ declare namespace Enum {
394
404
  }
395
405
  export const World: World;
396
406
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ActuatorRelativeTo>;
407
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ActuatorRelativeTo | undefined;
408
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ActuatorRelativeTo | undefined;
397
409
  }
398
410
  export type ActuatorRelativeTo = ActuatorRelativeTo.Attachment0 | ActuatorRelativeTo.Attachment1 | ActuatorRelativeTo.World;
399
411
  /**
@@ -436,6 +448,8 @@ declare namespace Enum {
436
448
  }
437
449
  export const Servo: Servo;
438
450
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ActuatorType>;
451
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ActuatorType | undefined;
452
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ActuatorType | undefined;
439
453
  }
440
454
  export type ActuatorType = ActuatorType.None | ActuatorType.Motor | ActuatorType.Servo;
441
455
  /**
@@ -506,6 +520,8 @@ declare namespace Enum {
506
520
  }
507
521
  export const PublisherIneligible: PublisherIneligible;
508
522
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AdAvailabilityResult>;
523
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AdAvailabilityResult | undefined;
524
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AdAvailabilityResult | undefined;
509
525
  }
510
526
  export type AdAvailabilityResult = AdAvailabilityResult.IsAvailable | AdAvailabilityResult.DeviceIneligible | AdAvailabilityResult.ExperienceIneligible | AdAvailabilityResult.InternalError | AdAvailabilityResult.NoFill | AdAvailabilityResult.PlayerIneligible | AdAvailabilityResult.PublisherIneligible;
511
527
  /**
@@ -579,6 +595,8 @@ declare namespace Enum {
579
595
  }
580
596
  export const UserCompletedVideo: UserCompletedVideo;
581
597
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AdEventType>;
598
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AdEventType | undefined;
599
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AdEventType | undefined;
582
600
  }
583
601
  export type AdEventType = AdEventType.RewardedAdLoaded | AdEventType.RewardedAdGrant | AdEventType.RewardedAdUnloaded | AdEventType.VideoLoaded | AdEventType.VideoRemoved | AdEventType.UserCompletedVideo;
584
602
  /**
@@ -595,6 +613,8 @@ declare namespace Enum {
595
613
  }
596
614
  export const RewardedVideo: RewardedVideo;
597
615
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AdFormat>;
616
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AdFormat | undefined;
617
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AdFormat | undefined;
598
618
  }
599
619
  export type AdFormat = AdFormat.RewardedVideo;
600
620
  /**
@@ -615,6 +635,8 @@ declare namespace Enum {
615
635
  }
616
636
  export const HorizontalRectangle: HorizontalRectangle;
617
637
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AdShape>;
638
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AdShape | undefined;
639
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AdShape | undefined;
618
640
  }
619
641
  export type AdShape = AdShape.HorizontalRectangle;
620
642
  /**
@@ -658,6 +680,8 @@ declare namespace Enum {
658
680
  }
659
681
  export const UIBackButton: UIBackButton;
660
682
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AdTeleportMethod>;
683
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AdTeleportMethod | undefined;
684
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AdTeleportMethod | undefined;
661
685
  }
662
686
  export type AdTeleportMethod = AdTeleportMethod.Undefined | AdTeleportMethod.PortalForward | AdTeleportMethod.InGameMenuBackButton | AdTeleportMethod.UIBackButton;
663
687
  /**
@@ -746,6 +770,8 @@ declare namespace Enum {
746
770
  }
747
771
  export const PauseEventTriggered: PauseEventTriggered;
748
772
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AdUIEventType>;
773
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AdUIEventType | undefined;
774
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AdUIEventType | undefined;
749
775
  }
750
776
  export type AdUIEventType = AdUIEventType.AdLabelClicked | AdUIEventType.VolumeButtonClicked | AdUIEventType.FullscreenButtonClicked | AdUIEventType.PlayButtonClicked | AdUIEventType.PauseButtonClicked | AdUIEventType.CloseButtonClicked | AdUIEventType.WhyThisAdClicked | AdUIEventType.PlayEventTriggered | AdUIEventType.PauseEventTriggered;
751
777
  /**
@@ -780,6 +806,8 @@ declare namespace Enum {
780
806
  }
781
807
  export const Video: Video;
782
808
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AdUIType>;
809
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AdUIType | undefined;
810
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AdUIType | undefined;
783
811
  }
784
812
  export type AdUIType = AdUIType.None | AdUIType.Image | AdUIType.Video;
785
813
  /**
@@ -811,6 +839,8 @@ declare namespace Enum {
811
839
  }
812
840
  export const Active: Active;
813
841
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AdUnitStatus>;
842
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AdUnitStatus | undefined;
843
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AdUnitStatus | undefined;
814
844
  }
815
845
  export type AdUnitStatus = AdUnitStatus.Inactive | AdUnitStatus.Active;
816
846
  /**
@@ -842,6 +872,8 @@ declare namespace Enum {
842
872
  }
843
873
  export const Never: Never;
844
874
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AdornCullingMode>;
875
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AdornCullingMode | undefined;
876
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AdornCullingMode | undefined;
845
877
  }
846
878
  export type AdornCullingMode = AdornCullingMode.Automatic | AdornCullingMode.Never;
847
879
  /**
@@ -917,6 +949,8 @@ declare namespace Enum {
917
949
  }
918
950
  export const Perpendicular: Perpendicular;
919
951
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AlignType>;
952
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AlignType | undefined;
953
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AlignType | undefined;
920
954
  }
921
955
  export type AlignType = AlignType.PrimaryAxisParallel | AlignType.PrimaryAxisPerpendicular | AlignType.PrimaryAxisLookAt | AlignType.AllAxes | AlignType.Parallel | AlignType.Perpendicular;
922
956
  /**
@@ -948,6 +982,8 @@ declare namespace Enum {
948
982
  }
949
983
  export const Transparency: Transparency;
950
984
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AlphaMode>;
985
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AlphaMode | undefined;
986
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AlphaMode | undefined;
951
987
  }
952
988
  export type AlphaMode = AlphaMode.Overlay | AlphaMode.Transparency;
953
989
  /**
@@ -984,6 +1020,8 @@ declare namespace Enum {
984
1020
  }
985
1021
  export const CustomField03: CustomField03;
986
1022
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnalyticsCustomFieldKeys>;
1023
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnalyticsCustomFieldKeys | undefined;
1024
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnalyticsCustomFieldKeys | undefined;
987
1025
  }
988
1026
  export type AnalyticsCustomFieldKeys = AnalyticsCustomFieldKeys.CustomField01 | AnalyticsCustomFieldKeys.CustomField02 | AnalyticsCustomFieldKeys.CustomField03;
989
1027
  /**
@@ -1024,6 +1062,8 @@ declare namespace Enum {
1024
1062
  }
1025
1063
  export const Spend: Spend;
1026
1064
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnalyticsEconomyAction>;
1065
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnalyticsEconomyAction | undefined;
1066
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnalyticsEconomyAction | undefined;
1027
1067
  }
1028
1068
  export type AnalyticsEconomyAction = AnalyticsEconomyAction.Default | AnalyticsEconomyAction.Acquire | AnalyticsEconomyAction.Spend;
1029
1069
  /**
@@ -1053,6 +1093,8 @@ declare namespace Enum {
1053
1093
  }
1054
1094
  export const Source: Source;
1055
1095
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnalyticsEconomyFlowType>;
1096
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnalyticsEconomyFlowType | undefined;
1097
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnalyticsEconomyFlowType | undefined;
1056
1098
  }
1057
1099
  export type AnalyticsEconomyFlowType = AnalyticsEconomyFlowType.Sink | AnalyticsEconomyFlowType.Source;
1058
1100
  /**
@@ -1126,6 +1168,8 @@ declare namespace Enum {
1126
1168
  }
1127
1169
  export const Onboarding: Onboarding;
1128
1170
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnalyticsEconomyTransactionType>;
1171
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnalyticsEconomyTransactionType | undefined;
1172
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnalyticsEconomyTransactionType | undefined;
1129
1173
  }
1130
1174
  export type AnalyticsEconomyTransactionType = AnalyticsEconomyTransactionType.IAP | AnalyticsEconomyTransactionType.Shop | AnalyticsEconomyTransactionType.Gameplay | AnalyticsEconomyTransactionType.ContextualPurchase | AnalyticsEconomyTransactionType.TimedReward | AnalyticsEconomyTransactionType.Onboarding;
1131
1175
  /**
@@ -1197,6 +1241,8 @@ declare namespace Enum {
1197
1241
  }
1198
1242
  export const Fatal: Fatal;
1199
1243
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnalyticsLogLevel>;
1244
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnalyticsLogLevel | undefined;
1245
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnalyticsLogLevel | undefined;
1200
1246
  }
1201
1247
  export type AnalyticsLogLevel = AnalyticsLogLevel.Trace | AnalyticsLogLevel.Debug | AnalyticsLogLevel.Information | AnalyticsLogLevel.Warning | AnalyticsLogLevel.Error | AnalyticsLogLevel.Fatal;
1202
1248
  /**
@@ -1261,6 +1307,8 @@ declare namespace Enum {
1261
1307
  }
1262
1308
  export const Fail: Fail;
1263
1309
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnalyticsProgressionStatus>;
1310
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnalyticsProgressionStatus | undefined;
1311
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnalyticsProgressionStatus | undefined;
1264
1312
  }
1265
1313
  export type AnalyticsProgressionStatus = AnalyticsProgressionStatus.Default | AnalyticsProgressionStatus.Begin | AnalyticsProgressionStatus.Complete | AnalyticsProgressionStatus.Abandon | AnalyticsProgressionStatus.Fail;
1266
1314
  /**
@@ -1304,6 +1352,8 @@ declare namespace Enum {
1304
1352
  }
1305
1353
  export const Complete: Complete;
1306
1354
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnalyticsProgressionType>;
1355
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnalyticsProgressionType | undefined;
1356
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnalyticsProgressionType | undefined;
1307
1357
  }
1308
1358
  export type AnalyticsProgressionType = AnalyticsProgressionType.Custom | AnalyticsProgressionType.Start | AnalyticsProgressionType.Fail | AnalyticsProgressionType.Complete;
1309
1359
  /**
@@ -1419,6 +1469,8 @@ declare namespace Enum {
1419
1469
  }
1420
1470
  export const ErrorUploadingVideo: ErrorUploadingVideo;
1421
1471
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimationClipFromVideoStatus>;
1472
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimationClipFromVideoStatus | undefined;
1473
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationClipFromVideoStatus | undefined;
1422
1474
  }
1423
1475
  export type AnimationClipFromVideoStatus = AnimationClipFromVideoStatus.Initializing | AnimationClipFromVideoStatus.Pending | AnimationClipFromVideoStatus.Processing | AnimationClipFromVideoStatus.ErrorGeneric | AnimationClipFromVideoStatus.Success | AnimationClipFromVideoStatus.ErrorVideoTooLong | AnimationClipFromVideoStatus.ErrorNoPersonDetected | AnimationClipFromVideoStatus.ErrorVideoUnstable | AnimationClipFromVideoStatus.Timeout | AnimationClipFromVideoStatus.Cancelled | AnimationClipFromVideoStatus.ErrorMultiplePeople | AnimationClipFromVideoStatus.ErrorUploadingVideo;
1424
1476
  /**
@@ -1505,6 +1557,8 @@ declare namespace Enum {
1505
1557
  }
1506
1558
  export const Action4: Action4;
1507
1559
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimationPriority>;
1560
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimationPriority | undefined;
1561
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationPriority | undefined;
1508
1562
  }
1509
1563
  export type AnimationPriority = AnimationPriority.Core | AnimationPriority.Idle | AnimationPriority.Movement | AnimationPriority.Action | AnimationPriority.Action2 | AnimationPriority.Action3 | AnimationPriority.Action4;
1510
1564
  /**
@@ -1547,6 +1601,8 @@ declare namespace Enum {
1547
1601
  }
1548
1602
  export const Enabled: Enabled;
1549
1603
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimatorRetargetingMode>;
1604
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimatorRetargetingMode | undefined;
1605
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimatorRetargetingMode | undefined;
1550
1606
  }
1551
1607
  export type AnimatorRetargetingMode = AnimatorRetargetingMode.Default | AnimatorRetargetingMode.Disabled | AnimatorRetargetingMode.Enabled;
1552
1608
  /**
@@ -1581,6 +1637,8 @@ declare namespace Enum {
1581
1637
  }
1582
1638
  export const WritingNew: WritingNew;
1583
1639
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnnotationEditingMode>;
1640
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnnotationEditingMode | undefined;
1641
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnnotationEditingMode | undefined;
1584
1642
  }
1585
1643
  export type AnnotationEditingMode = AnnotationEditingMode.None | AnnotationEditingMode.PlacingNew | AnnotationEditingMode.WritingNew;
1586
1644
  /**
@@ -1615,6 +1673,8 @@ declare namespace Enum {
1615
1673
  }
1616
1674
  export const ErrorNotFound: ErrorNotFound;
1617
1675
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnnotationRequestResult>;
1676
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnnotationRequestResult | undefined;
1677
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnnotationRequestResult | undefined;
1618
1678
  }
1619
1679
  export type AnnotationRequestResult = AnnotationRequestResult.Success | AnnotationRequestResult.ErrorInternalFailure | AnnotationRequestResult.ErrorNotFound;
1620
1680
  /**
@@ -1667,6 +1727,8 @@ declare namespace Enum {
1667
1727
  }
1668
1728
  export const Edit: Edit;
1669
1729
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnnotationRequestType>;
1730
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnnotationRequestType | undefined;
1731
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnnotationRequestType | undefined;
1670
1732
  }
1671
1733
  export type AnnotationRequestType = AnnotationRequestType.Unknown | AnnotationRequestType.Create | AnnotationRequestType.Resolve | AnnotationRequestType.Delete | AnnotationRequestType.Edit;
1672
1734
  /**
@@ -1710,6 +1772,8 @@ declare namespace Enum {
1710
1772
  }
1711
1773
  export const Hidden: Hidden;
1712
1774
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AppLifecycleManagerState>;
1775
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AppLifecycleManagerState | undefined;
1776
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AppLifecycleManagerState | undefined;
1713
1777
  }
1714
1778
  export type AppLifecycleManagerState = AppLifecycleManagerState.Detached | AppLifecycleManagerState.Active | AppLifecycleManagerState.Inactive | AppLifecycleManagerState.Hidden;
1715
1779
  /**
@@ -1816,6 +1880,8 @@ declare namespace Enum {
1816
1880
  }
1817
1881
  export const AvatarEditorPageLoaded: AvatarEditorPageLoaded;
1818
1882
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AppShellActionType>;
1883
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AppShellActionType | undefined;
1884
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AppShellActionType | undefined;
1819
1885
  }
1820
1886
  export type AppShellActionType = AppShellActionType.None | AppShellActionType.OpenApp | AppShellActionType.TapChatTab | AppShellActionType.TapConversationEntry | AppShellActionType.TapAvatarTab | AppShellActionType.ReadConversation | AppShellActionType.TapGamePageTab | AppShellActionType.TapHomePageTab | AppShellActionType.GamePageLoaded | AppShellActionType.HomePageLoaded | AppShellActionType.AvatarEditorPageLoaded;
1821
1887
  /**
@@ -1886,6 +1952,8 @@ declare namespace Enum {
1886
1952
  }
1887
1953
  export const Landing: Landing;
1888
1954
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AppShellFeature>;
1955
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AppShellFeature | undefined;
1956
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AppShellFeature | undefined;
1889
1957
  }
1890
1958
  export type AppShellFeature = AppShellFeature.None | AppShellFeature.Chat | AppShellFeature.AvatarEditor | AppShellFeature.GamePage | AppShellFeature.HomePage | AppShellFeature.More | AppShellFeature.Landing;
1891
1959
  /**
@@ -1947,6 +2015,8 @@ declare namespace Enum {
1947
2015
  }
1948
2016
  export const AvailableBoundChannel: AvailableBoundChannel;
1949
2017
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AppUpdateStatus>;
2018
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AppUpdateStatus | undefined;
2019
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AppUpdateStatus | undefined;
1950
2020
  }
1951
2021
  export type AppUpdateStatus = AppUpdateStatus.Unknown | AppUpdateStatus.NotSupported | AppUpdateStatus.Failed | AppUpdateStatus.NotAvailable | AppUpdateStatus.Available | AppUpdateStatus.AvailableBoundChannel;
1952
2022
  /**
@@ -1978,6 +2048,8 @@ declare namespace Enum {
1978
2048
  }
1979
2049
  export const Border: Border;
1980
2050
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ApplyStrokeMode>;
2051
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ApplyStrokeMode | undefined;
2052
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ApplyStrokeMode | undefined;
1981
2053
  }
1982
2054
  export type ApplyStrokeMode = ApplyStrokeMode.Contextual | ApplyStrokeMode.Border;
1983
2055
  /**
@@ -2009,6 +2081,8 @@ declare namespace Enum {
2009
2081
  }
2010
2082
  export const ScaleWithParentSize: ScaleWithParentSize;
2011
2083
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AspectType>;
2084
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AspectType | undefined;
2085
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AspectType | undefined;
2012
2086
  }
2013
2087
  export type AspectType = AspectType.FitWithinMaxSize | AspectType.ScaleWithParentSize;
2014
2088
  /**
@@ -2034,6 +2108,8 @@ declare namespace Enum {
2034
2108
  }
2035
2109
  export const Group: Group;
2036
2110
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AssetCreatorType>;
2111
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AssetCreatorType | undefined;
2112
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AssetCreatorType | undefined;
2037
2113
  }
2038
2114
  export type AssetCreatorType = AssetCreatorType.User | AssetCreatorType.Group;
2039
2115
  /**
@@ -2096,6 +2172,8 @@ declare namespace Enum {
2096
2172
  }
2097
2173
  export const TimedOut: TimedOut;
2098
2174
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AssetFetchStatus>;
2175
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AssetFetchStatus | undefined;
2176
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AssetFetchStatus | undefined;
2099
2177
  }
2100
2178
  export type AssetFetchStatus = AssetFetchStatus.Success | AssetFetchStatus.Failure | AssetFetchStatus.None | AssetFetchStatus.Loading | AssetFetchStatus.TimedOut;
2101
2179
  /**
@@ -2728,6 +2806,8 @@ declare namespace Enum {
2728
2806
  }
2729
2807
  export const DynamicHead: DynamicHead;
2730
2808
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AssetType>;
2809
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AssetType | undefined;
2810
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AssetType | undefined;
2731
2811
  }
2732
2812
  export type AssetType = AssetType.Image | AssetType.TShirt | AssetType.Audio | AssetType.Mesh | AssetType.Lua | AssetType.Hat | AssetType.Place | AssetType.Model | AssetType.Shirt | AssetType.Pants | AssetType.Decal | AssetType.Head | AssetType.Face | AssetType.Gear | AssetType.Badge | AssetType.Animation | AssetType.Torso | AssetType.RightArm | AssetType.LeftArm | AssetType.LeftLeg | AssetType.RightLeg | AssetType.Package | AssetType.GamePass | AssetType.Plugin | AssetType.MeshPart | AssetType.HairAccessory | AssetType.FaceAccessory | AssetType.NeckAccessory | AssetType.ShoulderAccessory | AssetType.FrontAccessory | AssetType.BackAccessory | AssetType.WaistAccessory | AssetType.ClimbAnimation | AssetType.DeathAnimation | AssetType.FallAnimation | AssetType.IdleAnimation | AssetType.JumpAnimation | AssetType.RunAnimation | AssetType.SwimAnimation | AssetType.WalkAnimation | AssetType.PoseAnimation | AssetType.EarAccessory | AssetType.EyeAccessory | AssetType.EmoteAnimation | AssetType.Video | AssetType.TShirtAccessory | AssetType.ShirtAccessory | AssetType.PantsAccessory | AssetType.JacketAccessory | AssetType.SweaterAccessory | AssetType.ShortsAccessory | AssetType.LeftShoeAccessory | AssetType.RightShoeAccessory | AssetType.DressSkirtAccessory | AssetType.FontFamily | AssetType.EyebrowAccessory | AssetType.EyelashAccessory | AssetType.MoodAnimation | AssetType.DynamicHead;
2733
2813
  /**
@@ -2770,6 +2850,8 @@ declare namespace Enum {
2770
2850
  }
2771
2851
  export const Always: Always;
2772
2852
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AssetTypeVerification>;
2853
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AssetTypeVerification | undefined;
2854
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AssetTypeVerification | undefined;
2773
2855
  }
2774
2856
  export type AssetTypeVerification = AssetTypeVerification.Default | AssetTypeVerification.ClientOnly | AssetTypeVerification.Always;
2775
2857
  /**
@@ -2812,6 +2894,8 @@ declare namespace Enum {
2812
2894
  }
2813
2895
  export const Enabled: Enabled;
2814
2896
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AudioApiRollout>;
2897
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AudioApiRollout | undefined;
2898
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AudioApiRollout | undefined;
2815
2899
  }
2816
2900
  export type AudioApiRollout = AudioApiRollout.Disabled | AudioApiRollout.Automatic | AudioApiRollout.Enabled;
2817
2901
  /**
@@ -2942,6 +3026,8 @@ declare namespace Enum {
2942
3026
  }
2943
3027
  export const Notch: Notch;
2944
3028
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AudioFilterType>;
3029
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AudioFilterType | undefined;
3030
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AudioFilterType | undefined;
2945
3031
  }
2946
3032
  export type AudioFilterType = AudioFilterType.Peak | AudioFilterType.LowShelf | AudioFilterType.HighShelf | AudioFilterType.Lowpass12dB | AudioFilterType.Lowpass24dB | AudioFilterType.Lowpass48dB | AudioFilterType.Highpass12dB | AudioFilterType.Highpass24dB | AudioFilterType.Highpass48dB | AudioFilterType.Bandpass | AudioFilterType.Notch;
2947
3033
  /**
@@ -2967,6 +3053,8 @@ declare namespace Enum {
2967
3053
  }
2968
3054
  export const Automatic: Automatic;
2969
3055
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AudioSimulationFidelity>;
3056
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AudioSimulationFidelity | undefined;
3057
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AudioSimulationFidelity | undefined;
2970
3058
  }
2971
3059
  export type AudioSimulationFidelity = AudioSimulationFidelity.None | AudioSimulationFidelity.Automatic;
2972
3060
  /**
@@ -2992,6 +3080,8 @@ declare namespace Enum {
2992
3080
  }
2993
3081
  export const SoundEffect: SoundEffect;
2994
3082
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AudioSubType>;
3083
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AudioSubType | undefined;
3084
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AudioSubType | undefined;
2995
3085
  }
2996
3086
  export type AudioSubType = AudioSubType.Music | AudioSubType.SoundEffect;
2997
3087
  /**
@@ -3026,6 +3116,8 @@ declare namespace Enum {
3026
3116
  }
3027
3117
  export const Large: Large;
3028
3118
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AudioWindowSize>;
3119
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AudioWindowSize | undefined;
3120
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AudioWindowSize | undefined;
3029
3121
  }
3030
3122
  export type AudioWindowSize = AudioWindowSize.Small | AudioWindowSize.Medium | AudioWindowSize.Large;
3031
3123
  /**
@@ -3060,6 +3152,8 @@ declare namespace Enum {
3060
3152
  }
3061
3153
  export const Relative: Relative;
3062
3154
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AutoIndentRule>;
3155
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AutoIndentRule | undefined;
3156
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AutoIndentRule | undefined;
3063
3157
  }
3064
3158
  export type AutoIndentRule = AutoIndentRule.Off | AutoIndentRule.Absolute | AutoIndentRule.Relative;
3065
3159
  /**
@@ -3113,6 +3207,8 @@ declare namespace Enum {
3113
3207
  }
3114
3208
  export const XY: XY;
3115
3209
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AutomaticSize>;
3210
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AutomaticSize | undefined;
3211
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AutomaticSize | undefined;
3116
3212
  }
3117
3213
  export type AutomaticSize = AutomaticSize.None | AutomaticSize.X | AutomaticSize.Y | AutomaticSize.XY;
3118
3214
  /**
@@ -3558,6 +3654,8 @@ declare namespace Enum {
3558
3654
  }
3559
3655
  export const DynamicHead: DynamicHead;
3560
3656
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AvatarAssetType>;
3657
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AvatarAssetType | undefined;
3658
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarAssetType | undefined;
3561
3659
  }
3562
3660
  export type AvatarAssetType = AvatarAssetType.TShirt | AvatarAssetType.Hat | AvatarAssetType.Shirt | AvatarAssetType.Pants | AvatarAssetType.Head | AvatarAssetType.Face | AvatarAssetType.Gear | AvatarAssetType.Torso | AvatarAssetType.RightArm | AvatarAssetType.LeftArm | AvatarAssetType.LeftLeg | AvatarAssetType.RightLeg | AvatarAssetType.HairAccessory | AvatarAssetType.FaceAccessory | AvatarAssetType.NeckAccessory | AvatarAssetType.ShoulderAccessory | AvatarAssetType.FrontAccessory | AvatarAssetType.BackAccessory | AvatarAssetType.WaistAccessory | AvatarAssetType.ClimbAnimation | AvatarAssetType.FallAnimation | AvatarAssetType.IdleAnimation | AvatarAssetType.JumpAnimation | AvatarAssetType.RunAnimation | AvatarAssetType.SwimAnimation | AvatarAssetType.WalkAnimation | AvatarAssetType.MoodAnimation | AvatarAssetType.EmoteAnimation | AvatarAssetType.TShirtAccessory | AvatarAssetType.ShirtAccessory | AvatarAssetType.PantsAccessory | AvatarAssetType.JacketAccessory | AvatarAssetType.SweaterAccessory | AvatarAssetType.ShortsAccessory | AvatarAssetType.LeftShoeAccessory | AvatarAssetType.RightShoeAccessory | AvatarAssetType.DressSkirtAccessory | AvatarAssetType.EyebrowAccessory | AvatarAssetType.EyelashAccessory | AvatarAssetType.DynamicHead;
3563
3661
  /**
@@ -3664,6 +3762,8 @@ declare namespace Enum {
3664
3762
  }
3665
3763
  export const UserVerifiedForVoice: UserVerifiedForVoice;
3666
3764
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AvatarChatServiceFeature>;
3765
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AvatarChatServiceFeature | undefined;
3766
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarChatServiceFeature | undefined;
3667
3767
  }
3668
3768
  export type AvatarChatServiceFeature = AvatarChatServiceFeature.None | AvatarChatServiceFeature.UniverseAudio | AvatarChatServiceFeature.UniverseVideo | AvatarChatServiceFeature.PlaceAudio | AvatarChatServiceFeature.PlaceVideo | AvatarChatServiceFeature.UserAudioEligible | AvatarChatServiceFeature.UserAudio | AvatarChatServiceFeature.UserVideoEligible | AvatarChatServiceFeature.UserVideo | AvatarChatServiceFeature.UserBanned | AvatarChatServiceFeature.UserVerifiedForVoice;
3669
3769
  /**
@@ -3707,6 +3807,8 @@ declare namespace Enum {
3707
3807
  }
3708
3808
  export const InspectMenu: InspectMenu;
3709
3809
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AvatarContextMenuOption>;
3810
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AvatarContextMenuOption | undefined;
3811
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarContextMenuOption | undefined;
3710
3812
  }
3711
3813
  export type AvatarContextMenuOption = AvatarContextMenuOption.Friend | AvatarContextMenuOption.Chat | AvatarContextMenuOption.Emote | AvatarContextMenuOption.InspectMenu;
3712
3814
  /**
@@ -3777,6 +3879,8 @@ declare namespace Enum {
3777
3879
  }
3778
3880
  export const JobNotFound: JobNotFound;
3779
3881
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AvatarGenerationError>;
3882
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AvatarGenerationError | undefined;
3883
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarGenerationError | undefined;
3780
3884
  }
3781
3885
  export type AvatarGenerationError = AvatarGenerationError.None | AvatarGenerationError.Unknown | AvatarGenerationError.DownloadFailed | AvatarGenerationError.Canceled | AvatarGenerationError.Offensive | AvatarGenerationError.Timeout | AvatarGenerationError.JobNotFound;
3782
3886
  /**
@@ -3808,6 +3912,8 @@ declare namespace Enum {
3808
3912
  }
3809
3913
  export const Bundle: Bundle;
3810
3914
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AvatarItemType>;
3915
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AvatarItemType | undefined;
3916
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarItemType | undefined;
3811
3917
  }
3812
3918
  export type AvatarItemType = AvatarItemType.Asset | AvatarItemType.Bundle;
3813
3919
  /**
@@ -3850,6 +3956,8 @@ declare namespace Enum {
3850
3956
  }
3851
3957
  export const Failed: Failed;
3852
3958
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AvatarPromptResult>;
3959
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AvatarPromptResult | undefined;
3960
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarPromptResult | undefined;
3853
3961
  }
3854
3962
  export type AvatarPromptResult = AvatarPromptResult.Success | AvatarPromptResult.PermissionDenied | AvatarPromptResult.Failed;
3855
3963
  /**
@@ -3875,6 +3983,8 @@ declare namespace Enum {
3875
3983
  }
3876
3984
  export const FullBody: FullBody;
3877
3985
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AvatarThumbnailCustomizationType>;
3986
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AvatarThumbnailCustomizationType | undefined;
3987
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarThumbnailCustomizationType | undefined;
3878
3988
  }
3879
3989
  export type AvatarThumbnailCustomizationType = AvatarThumbnailCustomizationType.Closeup | AvatarThumbnailCustomizationType.FullBody;
3880
3990
  /**
@@ -3909,6 +4019,8 @@ declare namespace Enum {
3909
4019
  }
3910
4020
  export const Enabled: Enabled;
3911
4021
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AvatarUnificationMode>;
4022
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AvatarUnificationMode | undefined;
4023
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarUnificationMode | undefined;
3912
4024
  }
3913
4025
  export type AvatarUnificationMode = AvatarUnificationMode.Default | AvatarUnificationMode.Disabled | AvatarUnificationMode.Enabled;
3914
4026
  /**
@@ -3975,6 +4087,8 @@ declare namespace Enum {
3975
4087
  */
3976
4088
  export const Front: Z;
3977
4089
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.Axis>;
4090
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.Axis | undefined;
4091
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.Axis | undefined;
3978
4092
  }
3979
4093
  export type Axis = Axis.X | Axis.Y | Axis.Z;
3980
4094
  /**
@@ -4009,6 +4123,8 @@ declare namespace Enum {
4009
4123
  }
4010
4124
  export const AvatarBundle: AvatarBundle;
4011
4125
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.BenefitType>;
4126
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.BenefitType | undefined;
4127
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.BenefitType | undefined;
4012
4128
  }
4013
4129
  export type BenefitType = BenefitType.DeveloperProduct | BenefitType.AvatarAsset | BenefitType.AvatarBundle;
4014
4130
  /**
@@ -4073,6 +4189,8 @@ declare namespace Enum {
4073
4189
  }
4074
4190
  export const Hammer: Hammer;
4075
4191
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.BinType>;
4192
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.BinType | undefined;
4193
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.BinType | undefined;
4076
4194
  }
4077
4195
  export type BinType = BinType.Script | BinType.GameTool | BinType.Grab | BinType.Clone | BinType.Hammer;
4078
4196
  /**
@@ -4148,6 +4266,8 @@ declare namespace Enum {
4148
4266
  }
4149
4267
  export const RightLeg: RightLeg;
4150
4268
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.BodyPart>;
4269
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.BodyPart | undefined;
4270
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.BodyPart | undefined;
4151
4271
  }
4152
4272
  export type BodyPart = BodyPart.Head | BodyPart.Torso | BodyPart.LeftArm | BodyPart.RightArm | BodyPart.LeftLeg | BodyPart.RightLeg;
4153
4273
  /**
@@ -4344,6 +4464,8 @@ declare namespace Enum {
4344
4464
  }
4345
4465
  export const Unknown: Unknown;
4346
4466
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.BodyPartR15>;
4467
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.BodyPartR15 | undefined;
4468
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.BodyPartR15 | undefined;
4347
4469
  }
4348
4470
  export type BodyPartR15 = BodyPartR15.Head | BodyPartR15.UpperTorso | BodyPartR15.LowerTorso | BodyPartR15.LeftFoot | BodyPartR15.LeftLowerLeg | BodyPartR15.LeftUpperLeg | BodyPartR15.RightFoot | BodyPartR15.RightLowerLeg | BodyPartR15.RightUpperLeg | BodyPartR15.LeftHand | BodyPartR15.LeftLowerArm | BodyPartR15.LeftUpperArm | BodyPartR15.RightHand | BodyPartR15.RightLowerArm | BodyPartR15.RightUpperArm | BodyPartR15.RootPart | BodyPartR15.Unknown;
4349
4471
  /**
@@ -4386,6 +4508,8 @@ declare namespace Enum {
4386
4508
  }
4387
4509
  export const Inset: Inset;
4388
4510
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.BorderMode>;
4511
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.BorderMode | undefined;
4512
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.BorderMode | undefined;
4389
4513
  }
4390
4514
  export type BorderMode = BorderMode.Outline | BorderMode.Middle | BorderMode.Inset;
4391
4515
  /**
@@ -4439,6 +4563,8 @@ declare namespace Enum {
4439
4563
  }
4440
4564
  export const UserBreakpoint: UserBreakpoint;
4441
4565
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.BreakReason>;
4566
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.BreakReason | undefined;
4567
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.BreakReason | undefined;
4442
4568
  }
4443
4569
  export type BreakReason = BreakReason.Other | BreakReason.Error | BreakReason.SpecialBreakpoint | BreakReason.UserBreakpoint;
4444
4570
  /**
@@ -4481,6 +4607,8 @@ declare namespace Enum {
4481
4607
  }
4482
4608
  export const ScriptRemoved: ScriptRemoved;
4483
4609
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.BreakpointRemoveReason>;
4610
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.BreakpointRemoveReason | undefined;
4611
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.BreakpointRemoveReason | undefined;
4484
4612
  }
4485
4613
  export type BreakpointRemoveReason = BreakpointRemoveReason.Requested | BreakpointRemoveReason.ScriptChanged | BreakpointRemoveReason.ScriptRemoved;
4486
4614
  /**
@@ -4506,6 +4634,8 @@ declare namespace Enum {
4506
4634
  }
4507
4635
  export const FireCFrameChanged: FireCFrameChanged;
4508
4636
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.BulkMoveMode>;
4637
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.BulkMoveMode | undefined;
4638
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.BulkMoveMode | undefined;
4509
4639
  }
4510
4640
  export type BulkMoveMode = BulkMoveMode.FireAllEvents | BulkMoveMode.FireCFrameChanged;
4511
4641
  /**
@@ -4568,6 +4698,8 @@ declare namespace Enum {
4568
4698
  }
4569
4699
  export const DynamicHeadAvatar: DynamicHeadAvatar;
4570
4700
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.BundleType>;
4701
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.BundleType | undefined;
4702
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.BundleType | undefined;
4571
4703
  }
4572
4704
  export type BundleType = BundleType.BodyParts | BundleType.Animations | BundleType.Shoes | BundleType.DynamicHead | BundleType.DynamicHeadAvatar;
4573
4705
  /**
@@ -4599,6 +4731,8 @@ declare namespace Enum {
4599
4731
  }
4600
4732
  export const Dismount: Dismount;
4601
4733
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.Button>;
4734
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.Button | undefined;
4735
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.Button | undefined;
4602
4736
  }
4603
4737
  export type Button = Button.Jump | Button.Dismount;
4604
4738
  /**
@@ -4674,6 +4808,8 @@ declare namespace Enum {
4674
4808
  }
4675
4809
  export const RobloxRoundDropdownButton: RobloxRoundDropdownButton;
4676
4810
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ButtonStyle>;
4811
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ButtonStyle | undefined;
4812
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ButtonStyle | undefined;
4677
4813
  }
4678
4814
  export type ButtonStyle = ButtonStyle.Custom | ButtonStyle.RobloxButtonDefault | ButtonStyle.RobloxButton | ButtonStyle.RobloxRoundButton | ButtonStyle.RobloxRoundDefaultButton | ButtonStyle.RobloxRoundDropdownButton;
4679
4815
  /**
@@ -4699,6 +4835,8 @@ declare namespace Enum {
4699
4835
  }
4700
4836
  export const Outer: Outer;
4701
4837
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CageType>;
4838
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CageType | undefined;
4839
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CageType | undefined;
4702
4840
  }
4703
4841
  export type CageType = CageType.Inner | CageType.Outer;
4704
4842
  /**
@@ -4730,6 +4868,8 @@ declare namespace Enum {
4730
4868
  }
4731
4869
  export const LockFirstPerson: LockFirstPerson;
4732
4870
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CameraMode>;
4871
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CameraMode | undefined;
4872
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CameraMode | undefined;
4733
4873
  }
4734
4874
  export type CameraMode = CameraMode.Classic | CameraMode.LockFirstPerson;
4735
4875
  /**
@@ -4761,6 +4901,8 @@ declare namespace Enum {
4761
4901
  }
4762
4902
  export const EdgeBump: EdgeBump;
4763
4903
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CameraPanMode>;
4904
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CameraPanMode | undefined;
4905
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CameraPanMode | undefined;
4764
4906
  }
4765
4907
  export type CameraPanMode = CameraPanMode.Classic | CameraPanMode.EdgeBump;
4766
4908
  /**
@@ -4795,6 +4937,8 @@ declare namespace Enum {
4795
4937
  }
4796
4938
  export const AltScroll: AltScroll;
4797
4939
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CameraSpeedAdjustBinding>;
4940
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CameraSpeedAdjustBinding | undefined;
4941
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CameraSpeedAdjustBinding | undefined;
4798
4942
  }
4799
4943
  export type CameraSpeedAdjustBinding = CameraSpeedAdjustBinding.None | CameraSpeedAdjustBinding.RmbScroll | CameraSpeedAdjustBinding.AltScroll;
4800
4944
  /**
@@ -4892,6 +5036,8 @@ declare namespace Enum {
4892
5036
  }
4893
5037
  export const Orbital: Orbital;
4894
5038
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CameraType>;
5039
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CameraType | undefined;
5040
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CameraType | undefined;
4895
5041
  }
4896
5042
  export type CameraType = CameraType.Fixed | CameraType.Attach | CameraType.Watch | CameraType.Track | CameraType.Follow | CameraType.Custom | CameraType.Scriptable | CameraType.Orbital;
4897
5043
  /**
@@ -4953,6 +5099,8 @@ declare namespace Enum {
4953
5099
  }
4954
5100
  export const Recommended: Recommended;
4955
5101
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CatalogCategoryFilter>;
5102
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CatalogCategoryFilter | undefined;
5103
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CatalogCategoryFilter | undefined;
4956
5104
  }
4957
5105
  export type CatalogCategoryFilter = CatalogCategoryFilter.None | CatalogCategoryFilter.Featured | CatalogCategoryFilter.Collectibles | CatalogCategoryFilter.CommunityCreations | CatalogCategoryFilter.Premium | CatalogCategoryFilter.Recommended;
4958
5106
  /**
@@ -5014,6 +5162,8 @@ declare namespace Enum {
5014
5162
  }
5015
5163
  export const AllTime: AllTime;
5016
5164
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CatalogSortAggregation>;
5165
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CatalogSortAggregation | undefined;
5166
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CatalogSortAggregation | undefined;
5017
5167
  }
5018
5168
  export type CatalogSortAggregation = CatalogSortAggregation.Past12Hours | CatalogSortAggregation.PastDay | CatalogSortAggregation.Past3Days | CatalogSortAggregation.PastWeek | CatalogSortAggregation.PastMonth | CatalogSortAggregation.AllTime;
5019
5169
  /**
@@ -5079,6 +5229,8 @@ declare namespace Enum {
5079
5229
  }
5080
5230
  export const Bestselling: Bestselling;
5081
5231
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CatalogSortType>;
5232
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CatalogSortType | undefined;
5233
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CatalogSortType | undefined;
5082
5234
  }
5083
5235
  export type CatalogSortType = CatalogSortType.Relevance | CatalogSortType.PriceHighToLow | CatalogSortType.PriceLowToHigh | CatalogSortType.MostFavorited | CatalogSortType.RecentlyCreated | CatalogSortType.Bestselling;
5084
5236
  /**
@@ -5131,6 +5283,8 @@ declare namespace Enum {
5131
5283
  }
5132
5284
  export const HorizontalWedge: HorizontalWedge;
5133
5285
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CellBlock>;
5286
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CellBlock | undefined;
5287
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CellBlock | undefined;
5134
5288
  }
5135
5289
  export type CellBlock = CellBlock.Solid | CellBlock.VerticalWedge | CellBlock.CornerWedge | CellBlock.InverseCornerWedge | CellBlock.HorizontalWedge;
5136
5290
  /**
@@ -5300,6 +5454,8 @@ declare namespace Enum {
5300
5454
  }
5301
5455
  export const Water: Water;
5302
5456
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CellMaterial>;
5457
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CellMaterial | undefined;
5458
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CellMaterial | undefined;
5303
5459
  }
5304
5460
  export type CellMaterial = CellMaterial.Empty | CellMaterial.Grass | CellMaterial.Sand | CellMaterial.Brick | CellMaterial.Granite | CellMaterial.Asphalt | CellMaterial.Iron | CellMaterial.Aluminum | CellMaterial.Gold | CellMaterial.WoodPlank | CellMaterial.WoodLog | CellMaterial.Gravel | CellMaterial.CinderBlock | CellMaterial.MossyStone | CellMaterial.Cement | CellMaterial.RedPlastic | CellMaterial.BluePlastic | CellMaterial.Water;
5305
5461
  /**
@@ -5343,6 +5499,8 @@ declare namespace Enum {
5343
5499
  }
5344
5500
  export const NegX: NegX;
5345
5501
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CellOrientation>;
5502
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CellOrientation | undefined;
5503
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CellOrientation | undefined;
5346
5504
  }
5347
5505
  export type CellOrientation = CellOrientation.NegZ | CellOrientation.X | CellOrientation.Z | CellOrientation.NegX;
5348
5506
  /**
@@ -5386,6 +5544,8 @@ declare namespace Enum {
5386
5544
  }
5387
5545
  export const QuitDialog: QuitDialog;
5388
5546
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CenterDialogType>;
5547
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CenterDialogType | undefined;
5548
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CenterDialogType | undefined;
5389
5549
  }
5390
5550
  export type CenterDialogType = CenterDialogType.UnsolicitedDialog | CenterDialogType.PlayerInitiatedDialog | CenterDialogType.ModalDialog | CenterDialogType.QuitDialog;
5391
5551
  /**
@@ -5429,6 +5589,8 @@ declare namespace Enum {
5429
5589
  }
5430
5590
  export const LuaCharacterController: LuaCharacterController;
5431
5591
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CharacterControlMode>;
5592
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CharacterControlMode | undefined;
5593
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CharacterControlMode | undefined;
5432
5594
  }
5433
5595
  export type CharacterControlMode = CharacterControlMode.Default | CharacterControlMode.Legacy | CharacterControlMode.NoCharacterController | CharacterControlMode.LuaCharacterController;
5434
5596
  /**
@@ -5472,6 +5634,8 @@ declare namespace Enum {
5472
5634
  }
5473
5635
  export const OnServerReceivingMessage: OnServerReceivingMessage;
5474
5636
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ChatCallbackType>;
5637
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ChatCallbackType | undefined;
5638
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ChatCallbackType | undefined;
5475
5639
  }
5476
5640
  export type ChatCallbackType = ChatCallbackType.OnCreatingChatWindow | ChatCallbackType.OnClientSendingMessage | ChatCallbackType.OnClientFormattingMessage | ChatCallbackType.OnServerReceivingMessage;
5477
5641
  /**
@@ -5525,6 +5689,8 @@ declare namespace Enum {
5525
5689
  }
5526
5690
  export const White: White;
5527
5691
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ChatColor>;
5692
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ChatColor | undefined;
5693
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ChatColor | undefined;
5528
5694
  }
5529
5695
  export type ChatColor = ChatColor.Blue | ChatColor.Green | ChatColor.Red | ChatColor.White;
5530
5696
  /**
@@ -5554,6 +5720,8 @@ declare namespace Enum {
5554
5720
  }
5555
5721
  export const TextAndMenu: TextAndMenu;
5556
5722
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ChatMode>;
5723
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ChatMode | undefined;
5724
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ChatMode | undefined;
5557
5725
  }
5558
5726
  export type ChatMode = ChatMode.Menu | ChatMode.TextAndMenu;
5559
5727
  /**
@@ -5594,6 +5762,8 @@ declare namespace Enum {
5594
5762
  }
5595
5763
  export const Friends: Friends;
5596
5764
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ChatPrivacyMode>;
5765
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ChatPrivacyMode | undefined;
5766
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ChatPrivacyMode | undefined;
5597
5767
  }
5598
5768
  export type ChatPrivacyMode = ChatPrivacyMode.AllUsers | ChatPrivacyMode.NoOne | ChatPrivacyMode.Friends;
5599
5769
  /**
@@ -5628,6 +5798,8 @@ declare namespace Enum {
5628
5798
  }
5629
5799
  export const Restricted: Restricted;
5630
5800
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ChatRestrictionStatus>;
5801
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ChatRestrictionStatus | undefined;
5802
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ChatRestrictionStatus | undefined;
5631
5803
  }
5632
5804
  export type ChatRestrictionStatus = ChatRestrictionStatus.Unknown | ChatRestrictionStatus.NotRestricted | ChatRestrictionStatus.Restricted;
5633
5805
  /**
@@ -5670,6 +5842,8 @@ declare namespace Enum {
5670
5842
  }
5671
5843
  export const ClassicAndBubble: ClassicAndBubble;
5672
5844
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ChatStyle>;
5845
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ChatStyle | undefined;
5846
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ChatStyle | undefined;
5673
5847
  }
5674
5848
  export type ChatStyle = ChatStyle.Classic | ChatStyle.Bubble | ChatStyle.ClassicAndBubble;
5675
5849
  /**
@@ -5701,6 +5875,8 @@ declare namespace Enum {
5701
5875
  }
5702
5876
  export const TextChatService: TextChatService;
5703
5877
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ChatVersion>;
5878
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ChatVersion | undefined;
5879
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ChatVersion | undefined;
5704
5880
  }
5705
5881
  export type ChatVersion = ChatVersion.LegacyChatService | ChatVersion.TextChatService;
5706
5882
  /**
@@ -5743,6 +5919,8 @@ declare namespace Enum {
5743
5919
  }
5744
5920
  export const Enabled: Enabled;
5745
5921
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ClientAnimatorThrottlingMode>;
5922
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ClientAnimatorThrottlingMode | undefined;
5923
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ClientAnimatorThrottlingMode | undefined;
5746
5924
  }
5747
5925
  export type ClientAnimatorThrottlingMode = ClientAnimatorThrottlingMode.Default | ClientAnimatorThrottlingMode.Disabled | ClientAnimatorThrottlingMode.Enabled;
5748
5926
  /**
@@ -5818,6 +5996,8 @@ declare namespace Enum {
5818
5996
  }
5819
5997
  export const OutOfMemory: OutOfMemory;
5820
5998
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CloseReason>;
5999
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CloseReason | undefined;
6000
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CloseReason | undefined;
5821
6001
  }
5822
6002
  export type CloseReason = CloseReason.Unknown | CloseReason.RobloxMaintenance | CloseReason.DeveloperShutdown | CloseReason.DeveloperUpdate | CloseReason.ServerEmpty | CloseReason.OutOfMemory;
5823
6003
  /**
@@ -5861,6 +6041,8 @@ declare namespace Enum {
5861
6041
  }
5862
6042
  export const PrivateScripting: PrivateScripting;
5863
6043
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CollaboratorStatus>;
6044
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CollaboratorStatus | undefined;
6045
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CollaboratorStatus | undefined;
5864
6046
  }
5865
6047
  export type CollaboratorStatus = CollaboratorStatus.None | CollaboratorStatus.Editing3D | CollaboratorStatus.Scripting | CollaboratorStatus.PrivateScripting;
5866
6048
  /**
@@ -5914,6 +6096,8 @@ declare namespace Enum {
5914
6096
  }
5915
6097
  export const PreciseConvexDecomposition: PreciseConvexDecomposition;
5916
6098
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CollisionFidelity>;
6099
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CollisionFidelity | undefined;
6100
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CollisionFidelity | undefined;
5917
6101
  }
5918
6102
  export type CollisionFidelity = CollisionFidelity.Default | CollisionFidelity.Hull | CollisionFidelity.Box | CollisionFidelity.PreciseConvexDecomposition;
5919
6103
  /**
@@ -5939,6 +6123,8 @@ declare namespace Enum {
5939
6123
  }
5940
6124
  export const LocalUser: LocalUser;
5941
6125
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CommandPermission>;
6126
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CommandPermission | undefined;
6127
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CommandPermission | undefined;
5942
6128
  }
5943
6129
  export type CommandPermission = CommandPermission.Plugin | CommandPermission.LocalUser;
5944
6130
  /**
@@ -5982,6 +6168,8 @@ declare namespace Enum {
5982
6168
  }
5983
6169
  export const CoreScriptRaw: CoreScriptRaw;
5984
6170
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CompileTarget>;
6171
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CompileTarget | undefined;
6172
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CompileTarget | undefined;
5985
6173
  }
5986
6174
  export type CompileTarget = CompileTarget.Client | CompileTarget.CoreScript | CompileTarget.Studio | CompileTarget.CoreScriptRaw;
5987
6175
  /**
@@ -6025,6 +6213,8 @@ declare namespace Enum {
6025
6213
  }
6026
6214
  export const InsertOnEnterReplaceOnTab: InsertOnEnterReplaceOnTab;
6027
6215
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CompletionAcceptanceBehavior>;
6216
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CompletionAcceptanceBehavior | undefined;
6217
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CompletionAcceptanceBehavior | undefined;
6028
6218
  }
6029
6219
  export type CompletionAcceptanceBehavior = CompletionAcceptanceBehavior.Insert | CompletionAcceptanceBehavior.Replace | CompletionAcceptanceBehavior.ReplaceOnEnterInsertOnTab | CompletionAcceptanceBehavior.InsertOnEnterReplaceOnTab;
6030
6220
  /**
@@ -6257,6 +6447,8 @@ declare namespace Enum {
6257
6447
  }
6258
6448
  export const TypeParameter: TypeParameter;
6259
6449
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CompletionItemKind>;
6450
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CompletionItemKind | undefined;
6451
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CompletionItemKind | undefined;
6260
6452
  }
6261
6453
  export type CompletionItemKind = CompletionItemKind.Text | CompletionItemKind.Method | CompletionItemKind.Function | CompletionItemKind.Constructor | CompletionItemKind.Field | CompletionItemKind.Variable | CompletionItemKind.Class | CompletionItemKind.Interface | CompletionItemKind.Module | CompletionItemKind.Property | CompletionItemKind.Unit | CompletionItemKind.Value | CompletionItemKind.Enum | CompletionItemKind.Keyword | CompletionItemKind.Snippet | CompletionItemKind.Color | CompletionItemKind.File | CompletionItemKind.Reference | CompletionItemKind.Folder | CompletionItemKind.EnumMember | CompletionItemKind.Constant | CompletionItemKind.Struct | CompletionItemKind.Event | CompletionItemKind.Operator | CompletionItemKind.TypeParameter;
6262
6454
  /**
@@ -6383,6 +6575,8 @@ declare namespace Enum {
6383
6575
  }
6384
6576
  export const PutCursorBeforeEnd: PutCursorBeforeEnd;
6385
6577
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CompletionItemTag>;
6578
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CompletionItemTag | undefined;
6579
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CompletionItemTag | undefined;
6386
6580
  }
6387
6581
  export type CompletionItemTag = CompletionItemTag.Deprecated | CompletionItemTag.IncorrectIndexType | CompletionItemTag.PluginPermissions | CompletionItemTag.CommandLinePermissions | CompletionItemTag.RobloxPermissions | CompletionItemTag.AddParens | CompletionItemTag.PutCursorInParens | CompletionItemTag.TypeCorrect | CompletionItemTag.ClientServerBoundaryViolation | CompletionItemTag.Invalidated | CompletionItemTag.PutCursorBeforeEnd;
6388
6582
  /**
@@ -6417,6 +6611,8 @@ declare namespace Enum {
6417
6611
  }
6418
6612
  export const TriggerForIncompleteCompletions: TriggerForIncompleteCompletions;
6419
6613
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CompletionTriggerKind>;
6614
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CompletionTriggerKind | undefined;
6615
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CompletionTriggerKind | undefined;
6420
6616
  }
6421
6617
  export type CompletionTriggerKind = CompletionTriggerKind.Invoked | CompletionTriggerKind.TriggerCharacter | CompletionTriggerKind.TriggerForIncompleteCompletions;
6422
6618
  /**
@@ -6481,6 +6677,8 @@ declare namespace Enum {
6481
6677
  }
6482
6678
  export const CameraToggle: CameraToggle;
6483
6679
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ComputerCameraMovementMode>;
6680
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ComputerCameraMovementMode | undefined;
6681
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ComputerCameraMovementMode | undefined;
6484
6682
  }
6485
6683
  export type ComputerCameraMovementMode = ComputerCameraMovementMode.Default | ComputerCameraMovementMode.Classic | ComputerCameraMovementMode.Follow | ComputerCameraMovementMode.Orbital | ComputerCameraMovementMode.CameraToggle;
6486
6684
  /**
@@ -6523,6 +6721,8 @@ declare namespace Enum {
6523
6721
  }
6524
6722
  export const ClickToMove: ClickToMove;
6525
6723
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ComputerMovementMode>;
6724
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ComputerMovementMode | undefined;
6725
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ComputerMovementMode | undefined;
6526
6726
  }
6527
6727
  export type ComputerMovementMode = ComputerMovementMode.Default | ComputerMovementMode.KeyboardMouse | ComputerMovementMode.ClickToMove;
6528
6728
  /**
@@ -7178,6 +7378,8 @@ declare namespace Enum {
7178
7378
  }
7179
7379
  export const TeleportIsTeleporting: TeleportIsTeleporting;
7180
7380
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ConnectionError>;
7381
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ConnectionError | undefined;
7382
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ConnectionError | undefined;
7181
7383
  }
7182
7384
  export type ConnectionError = ConnectionError.OK | ConnectionError.Unknown | ConnectionError.DisconnectErrors | ConnectionError.DisconnectBadhash | ConnectionError.DisconnectSecurityKeyMismatch | ConnectionError.DisconnectProtocolMismatch | ConnectionError.DisconnectReceivePacketError | ConnectionError.DisconnectReceivePacketStreamError | ConnectionError.DisconnectSendPacketError | ConnectionError.DisconnectIllegalTeleport | ConnectionError.DisconnectDuplicatePlayer | ConnectionError.DisconnectDuplicateTicket | ConnectionError.DisconnectTimeout | ConnectionError.DisconnectLuaKick | ConnectionError.DisconnectOnRemoteSysStats | ConnectionError.DisconnectHashTimeout | ConnectionError.DisconnectCloudEditKick | ConnectionError.DisconnectPlayerless | ConnectionError.DisconnectNewSecurityKeyMismatch | ConnectionError.DisconnectEvicted | ConnectionError.DisconnectDevMaintenance | ConnectionError.DisconnectRobloxMaintenance | ConnectionError.DisconnectRejoin | ConnectionError.DisconnectConnectionLost | ConnectionError.DisconnectIdle | ConnectionError.DisconnectRaknetErrors | ConnectionError.DisconnectWrongVersion | ConnectionError.DisconnectBySecurityPolicy | ConnectionError.DisconnectBlockedIP | ConnectionError.DisconnectClientFailure | ConnectionError.DisconnectClientRequest | ConnectionError.DisconnectPrivateServerKickout | ConnectionError.DisconnectModeratedGame | ConnectionError.ServerShutdown | ConnectionError.ReplicatorTimeout | ConnectionError.PlayerRemoved | ConnectionError.DisconnectOutOfMemoryKeepPlayingLeave | ConnectionError.DisconnectRomarkEndOfTest | ConnectionError.DisconnectCollaboratorPermissionRevoked | ConnectionError.DisconnectCollaboratorUnderage | ConnectionError.NetworkInternal | ConnectionError.NetworkSend | ConnectionError.NetworkTimeout | ConnectionError.NetworkMisbehavior | ConnectionError.NetworkSecurity | ConnectionError.ReplacementReady | ConnectionError.ServerEmpty | ConnectionError.PlacelaunchErrors | ConnectionError.PlacelaunchDisabled | ConnectionError.PlacelaunchError | ConnectionError.PlacelaunchGameEnded | ConnectionError.PlacelaunchGameFull | ConnectionError.PlacelaunchUserLeft | ConnectionError.PlacelaunchRestricted | ConnectionError.PlacelaunchUnauthorized | ConnectionError.PlacelaunchFlooded | ConnectionError.PlacelaunchHashExpired | ConnectionError.PlacelaunchHashException | ConnectionError.PlacelaunchPartyCannotFit | ConnectionError.PlacelaunchHttpError | ConnectionError.PlacelaunchUserPrivacyUnauthorized | ConnectionError.PlacelaunchCreatorBan | ConnectionError.PlacelaunchCustomMessage | ConnectionError.PlacelaunchOtherError | ConnectionError.TeleportErrors | ConnectionError.TeleportFailure | ConnectionError.TeleportGameNotFound | ConnectionError.TeleportGameEnded | ConnectionError.TeleportGameFull | ConnectionError.TeleportUnauthorized | ConnectionError.TeleportFlooded | ConnectionError.TeleportIsTeleporting;
7183
7385
  /**
@@ -7209,6 +7411,8 @@ declare namespace Enum {
7209
7411
  }
7210
7412
  export const Disconnected: Disconnected;
7211
7413
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ConnectionState>;
7414
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ConnectionState | undefined;
7415
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ConnectionState | undefined;
7212
7416
  }
7213
7417
  export type ConnectionState = ConnectionState.Connected | ConnectionState.Disconnected;
7214
7418
  /**
@@ -7251,6 +7455,8 @@ declare namespace Enum {
7251
7455
  }
7252
7456
  export const Object: Object;
7253
7457
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ContentSourceType>;
7458
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ContentSourceType | undefined;
7459
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ContentSourceType | undefined;
7254
7460
  }
7255
7461
  export type ContentSourceType = ContentSourceType.None | ContentSourceType.Uri | ContentSourceType.Object;
7256
7462
  /**
@@ -7297,6 +7503,8 @@ declare namespace Enum {
7297
7503
  }
7298
7504
  export const High: High;
7299
7505
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ContextActionPriority>;
7506
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ContextActionPriority | undefined;
7507
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ContextActionPriority | undefined;
7300
7508
  }
7301
7509
  export type ContextActionPriority = ContextActionPriority.Low | ContextActionPriority.Medium | ContextActionPriority.High;
7302
7510
  /**
@@ -7328,6 +7536,8 @@ declare namespace Enum {
7328
7536
  }
7329
7537
  export const Pass: Pass;
7330
7538
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ContextActionResult>;
7539
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ContextActionResult | undefined;
7540
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ContextActionResult | undefined;
7331
7541
  }
7332
7542
  export type ContextActionResult = ContextActionResult.Sink | ContextActionResult.Pass;
7333
7543
  /**
@@ -7359,6 +7569,8 @@ declare namespace Enum {
7359
7569
  }
7360
7570
  export const MouseLockSwitch: MouseLockSwitch;
7361
7571
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ControlMode>;
7572
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ControlMode | undefined;
7573
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ControlMode | undefined;
7362
7574
  }
7363
7575
  export type ControlMode = ControlMode.Classic | ControlMode.MouseLockSwitch;
7364
7576
  /**
@@ -7454,6 +7666,8 @@ declare namespace Enum {
7454
7666
  }
7455
7667
  export const Captures: Captures;
7456
7668
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CoreGuiType>;
7669
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CoreGuiType | undefined;
7670
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CoreGuiType | undefined;
7457
7671
  }
7458
7672
  export type CoreGuiType = CoreGuiType.PlayerList | CoreGuiType.Health | CoreGuiType.Backpack | CoreGuiType.Chat | CoreGuiType.All | CoreGuiType.EmotesMenu | CoreGuiType.SelfView | CoreGuiType.Captures;
7459
7673
  /**
@@ -7497,6 +7711,8 @@ declare namespace Enum {
7497
7711
  }
7498
7712
  export const Unknown: Unknown;
7499
7713
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CreateAssetResult>;
7714
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CreateAssetResult | undefined;
7715
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CreateAssetResult | undefined;
7500
7716
  }
7501
7717
  export type CreateAssetResult = CreateAssetResult.Success | CreateAssetResult.PermissionDenied | CreateAssetResult.UploadFailed | CreateAssetResult.Unknown;
7502
7718
  /**
@@ -7531,6 +7747,8 @@ declare namespace Enum {
7531
7747
  }
7532
7748
  export const Other: Other;
7533
7749
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CreateOutfitFailure>;
7750
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CreateOutfitFailure | undefined;
7751
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CreateOutfitFailure | undefined;
7534
7752
  }
7535
7753
  export type CreateOutfitFailure = CreateOutfitFailure.InvalidName | CreateOutfitFailure.OutfitLimitReached | CreateOutfitFailure.Other;
7536
7754
  /**
@@ -7560,6 +7778,8 @@ declare namespace Enum {
7560
7778
  }
7561
7779
  export const Group: Group;
7562
7780
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CreatorType>;
7781
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CreatorType | undefined;
7782
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CreatorType | undefined;
7563
7783
  }
7564
7784
  export type CreatorType = CreatorType.User | CreatorType.Group;
7565
7785
  /**
@@ -7594,6 +7814,8 @@ declare namespace Enum {
7594
7814
  }
7595
7815
  export const All: All;
7596
7816
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CreatorTypeFilter>;
7817
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CreatorTypeFilter | undefined;
7818
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CreatorTypeFilter | undefined;
7597
7819
  }
7598
7820
  export type CreatorTypeFilter = CreatorTypeFilter.User | CreatorTypeFilter.Group | CreatorTypeFilter.All;
7599
7821
  /**
@@ -7634,6 +7856,8 @@ declare namespace Enum {
7634
7856
  }
7635
7857
  export const Tix: Tix;
7636
7858
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CurrencyType>;
7859
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CurrencyType | undefined;
7860
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CurrencyType | undefined;
7637
7861
  }
7638
7862
  export type CurrencyType = CurrencyType.Default | CurrencyType.Robux | CurrencyType.Tix;
7639
7863
  /**
@@ -7676,6 +7900,8 @@ declare namespace Enum {
7676
7900
  }
7677
7901
  export const Follow: Follow;
7678
7902
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CustomCameraMode>;
7903
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CustomCameraMode | undefined;
7904
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CustomCameraMode | undefined;
7679
7905
  }
7680
7906
  export type CustomCameraMode = CustomCameraMode.Default | CustomCameraMode.Classic | CustomCameraMode.Follow;
7681
7907
  /**
@@ -7784,6 +8010,8 @@ declare namespace Enum {
7784
8010
  }
7785
8011
  export const RemoveVersionAsync: RemoveVersionAsync;
7786
8012
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DataStoreRequestType>;
8013
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DataStoreRequestType | undefined;
8014
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DataStoreRequestType | undefined;
7787
8015
  }
7788
8016
  export type DataStoreRequestType = DataStoreRequestType.GetAsync | DataStoreRequestType.SetIncrementAsync | DataStoreRequestType.UpdateAsync | DataStoreRequestType.GetSortedAsync | DataStoreRequestType.SetIncrementSortedAsync | DataStoreRequestType.OnUpdate | DataStoreRequestType.ListAsync | DataStoreRequestType.GetVersionAsync | DataStoreRequestType.RemoveVersionAsync;
7789
8017
  /**
@@ -7881,6 +8109,8 @@ declare namespace Enum {
7881
8109
  }
7882
8110
  export const RpcError: RpcError;
7883
8111
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DebuggerEndReason>;
8112
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DebuggerEndReason | undefined;
8113
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DebuggerEndReason | undefined;
7884
8114
  }
7885
8115
  export type DebuggerEndReason = DebuggerEndReason.ClientRequest | DebuggerEndReason.Timeout | DebuggerEndReason.InvalidHost | DebuggerEndReason.Disconnected | DebuggerEndReason.ServerShutdown | DebuggerEndReason.ServerProtocolMismatch | DebuggerEndReason.ConfigurationFailed | DebuggerEndReason.RpcError;
7886
8116
  /**
@@ -7915,6 +8145,8 @@ declare namespace Enum {
7915
8145
  }
7916
8146
  export const Unhandled: Unhandled;
7917
8147
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DebuggerExceptionBreakMode>;
8148
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DebuggerExceptionBreakMode | undefined;
8149
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DebuggerExceptionBreakMode | undefined;
7918
8150
  }
7919
8151
  export type DebuggerExceptionBreakMode = DebuggerExceptionBreakMode.Never | DebuggerExceptionBreakMode.Always | DebuggerExceptionBreakMode.Unhandled;
7920
8152
  /**
@@ -7946,6 +8178,8 @@ declare namespace Enum {
7946
8178
  }
7947
8179
  export const Lua: Lua;
7948
8180
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DebuggerFrameType>;
8181
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DebuggerFrameType | undefined;
8182
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DebuggerFrameType | undefined;
7949
8183
  }
7950
8184
  export type DebuggerFrameType = DebuggerFrameType.C | DebuggerFrameType.Lua;
7951
8185
  /**
@@ -8021,6 +8255,8 @@ declare namespace Enum {
8021
8255
  }
8022
8256
  export const Entrypoint: Entrypoint;
8023
8257
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DebuggerPauseReason>;
8258
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DebuggerPauseReason | undefined;
8259
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DebuggerPauseReason | undefined;
8024
8260
  }
8025
8261
  export type DebuggerPauseReason = DebuggerPauseReason.Unknown | DebuggerPauseReason.Requested | DebuggerPauseReason.Breakpoint | DebuggerPauseReason.Exception | DebuggerPauseReason.SingleStep | DebuggerPauseReason.Entrypoint;
8026
8262
  /**
@@ -8129,6 +8365,8 @@ declare namespace Enum {
8129
8365
  }
8130
8366
  export const ConnectionClosed: ConnectionClosed;
8131
8367
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DebuggerStatus>;
8368
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DebuggerStatus | undefined;
8369
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DebuggerStatus | undefined;
8132
8370
  }
8133
8371
  export type DebuggerStatus = DebuggerStatus.Success | DebuggerStatus.Timeout | DebuggerStatus.ConnectionLost | DebuggerStatus.InvalidResponse | DebuggerStatus.InternalError | DebuggerStatus.InvalidState | DebuggerStatus.RpcError | DebuggerStatus.InvalidArgument | DebuggerStatus.ConnectionClosed;
8134
8372
  /**
@@ -8160,6 +8398,8 @@ declare namespace Enum {
8160
8398
  }
8161
8399
  export const Invisicam: Invisicam;
8162
8400
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DevCameraOcclusionMode>;
8401
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DevCameraOcclusionMode | undefined;
8402
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DevCameraOcclusionMode | undefined;
8163
8403
  }
8164
8404
  export type DevCameraOcclusionMode = DevCameraOcclusionMode.Zoom | DevCameraOcclusionMode.Invisicam;
8165
8405
  /**
@@ -8224,6 +8464,8 @@ declare namespace Enum {
8224
8464
  }
8225
8465
  export const CameraToggle: CameraToggle;
8226
8466
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DevComputerCameraMovementMode>;
8467
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DevComputerCameraMovementMode | undefined;
8468
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DevComputerCameraMovementMode | undefined;
8227
8469
  }
8228
8470
  export type DevComputerCameraMovementMode = DevComputerCameraMovementMode.UserChoice | DevComputerCameraMovementMode.Classic | DevComputerCameraMovementMode.Follow | DevComputerCameraMovementMode.Orbital | DevComputerCameraMovementMode.CameraToggle;
8229
8471
  /**
@@ -8277,6 +8519,8 @@ declare namespace Enum {
8277
8519
  }
8278
8520
  export const Scriptable: Scriptable;
8279
8521
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DevComputerMovementMode>;
8522
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DevComputerMovementMode | undefined;
8523
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DevComputerMovementMode | undefined;
8280
8524
  }
8281
8525
  export type DevComputerMovementMode = DevComputerMovementMode.UserChoice | DevComputerMovementMode.KeyboardMouse | DevComputerMovementMode.ClickToMove | DevComputerMovementMode.Scriptable;
8282
8526
  /**
@@ -8330,6 +8574,8 @@ declare namespace Enum {
8330
8574
  }
8331
8575
  export const Orbital: Orbital;
8332
8576
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DevTouchCameraMovementMode>;
8577
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DevTouchCameraMovementMode | undefined;
8578
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DevTouchCameraMovementMode | undefined;
8333
8579
  }
8334
8580
  export type DevTouchCameraMovementMode = DevTouchCameraMovementMode.UserChoice | DevTouchCameraMovementMode.Classic | DevTouchCameraMovementMode.Follow | DevTouchCameraMovementMode.Orbital;
8335
8581
  /**
@@ -8410,6 +8656,8 @@ declare namespace Enum {
8410
8656
  }
8411
8657
  export const DynamicThumbstick: DynamicThumbstick;
8412
8658
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DevTouchMovementMode>;
8659
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DevTouchMovementMode | undefined;
8660
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DevTouchMovementMode | undefined;
8413
8661
  }
8414
8662
  export type DevTouchMovementMode = DevTouchMovementMode.UserChoice | DevTouchMovementMode.Thumbstick | DevTouchMovementMode.DPad | DevTouchMovementMode.Thumbpad | DevTouchMovementMode.ClickToMove | DevTouchMovementMode.Scriptable | DevTouchMovementMode.DynamicThumbstick;
8415
8663
  /**
@@ -8670,6 +8918,8 @@ declare namespace Enum {
8670
8918
  }
8671
8919
  export const GeometryCSG: GeometryCSG;
8672
8920
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DeveloperMemoryTag>;
8921
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DeveloperMemoryTag | undefined;
8922
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DeveloperMemoryTag | undefined;
8673
8923
  }
8674
8924
  export type DeveloperMemoryTag = DeveloperMemoryTag.Internal | DeveloperMemoryTag.HttpCache | DeveloperMemoryTag.Instances | DeveloperMemoryTag.Signals | DeveloperMemoryTag.LuaHeap | DeveloperMemoryTag.Script | DeveloperMemoryTag.PhysicsCollision | DeveloperMemoryTag.PhysicsParts | DeveloperMemoryTag.GraphicsSolidModels | DeveloperMemoryTag.GraphicsMeshParts | DeveloperMemoryTag.GraphicsParticles | DeveloperMemoryTag.GraphicsParts | DeveloperMemoryTag.GraphicsSpatialHash | DeveloperMemoryTag.GraphicsTerrain | DeveloperMemoryTag.GraphicsTexture | DeveloperMemoryTag.GraphicsTextureCharacter | DeveloperMemoryTag.Sounds | DeveloperMemoryTag.StreamingSounds | DeveloperMemoryTag.TerrainVoxels | DeveloperMemoryTag.Gui | DeveloperMemoryTag.Animation | DeveloperMemoryTag.Navigation | DeveloperMemoryTag.GeometryCSG;
8675
8925
  /**
@@ -8686,6 +8936,8 @@ declare namespace Enum {
8686
8936
  }
8687
8937
  export const DeviceCapture: DeviceCapture;
8688
8938
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DeviceFeatureType>;
8939
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DeviceFeatureType | undefined;
8940
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DeviceFeatureType | undefined;
8689
8941
  }
8690
8942
  export type DeviceFeatureType = DeviceFeatureType.DeviceCapture;
8691
8943
  /**
@@ -8738,6 +8990,8 @@ declare namespace Enum {
8738
8990
  }
8739
8991
  export const VR: VR;
8740
8992
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DeviceForm>;
8993
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DeviceForm | undefined;
8994
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DeviceForm | undefined;
8741
8995
  }
8742
8996
  export type DeviceForm = DeviceForm.Console | DeviceForm.Phone | DeviceForm.Tablet | DeviceForm.Desktop | DeviceForm.VR;
8743
8997
  /**
@@ -8772,6 +9026,8 @@ declare namespace Enum {
8772
9026
  }
8773
9027
  export const High: High;
8774
9028
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DeviceLevel>;
9029
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DeviceLevel | undefined;
9030
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DeviceLevel | undefined;
8775
9031
  }
8776
9032
  export type DeviceLevel = DeviceLevel.Low | DeviceLevel.Medium | DeviceLevel.High;
8777
9033
  /**
@@ -8825,6 +9081,8 @@ declare namespace Enum {
8825
9081
  }
8826
9082
  export const Phone: Phone;
8827
9083
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DeviceType>;
9084
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DeviceType | undefined;
9085
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DeviceType | undefined;
8828
9086
  }
8829
9087
  export type DeviceType = DeviceType.Unknown | DeviceType.Desktop | DeviceType.Tablet | DeviceType.Phone;
8830
9088
  /**
@@ -8856,6 +9114,8 @@ declare namespace Enum {
8856
9114
  }
8857
9115
  export const MultiplePlayers: MultiplePlayers;
8858
9116
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DialogBehaviorType>;
9117
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DialogBehaviorType | undefined;
9118
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DialogBehaviorType | undefined;
8859
9119
  }
8860
9120
  export type DialogBehaviorType = DialogBehaviorType.SinglePlayer | DialogBehaviorType.MultiplePlayers;
8861
9121
  /**
@@ -8898,6 +9158,8 @@ declare namespace Enum {
8898
9158
  }
8899
9159
  export const Shop: Shop;
8900
9160
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DialogPurpose>;
9161
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DialogPurpose | undefined;
9162
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DialogPurpose | undefined;
8901
9163
  }
8902
9164
  export type DialogPurpose = DialogPurpose.Quest | DialogPurpose.Help | DialogPurpose.Shop;
8903
9165
  /**
@@ -8940,6 +9202,8 @@ declare namespace Enum {
8940
9202
  }
8941
9203
  export const Enemy: Enemy;
8942
9204
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DialogTone>;
9205
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DialogTone | undefined;
9206
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DialogTone | undefined;
8943
9207
  }
8944
9208
  export type DialogTone = DialogTone.Neutral | DialogTone.Friendly | DialogTone.Enemy;
8945
9209
  /**
@@ -8971,6 +9235,8 @@ declare namespace Enum {
8971
9235
  }
8972
9236
  export const Height: Height;
8973
9237
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DominantAxis>;
9238
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DominantAxis | undefined;
9239
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DominantAxis | undefined;
8974
9240
  }
8975
9241
  export type DominantAxis = DominantAxis.Width | DominantAxis.Height;
8976
9242
  /**
@@ -9014,6 +9280,8 @@ declare namespace Enum {
9014
9280
  }
9015
9281
  export const DraftCommitted: DraftCommitted;
9016
9282
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DraftStatusCode>;
9283
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DraftStatusCode | undefined;
9284
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DraftStatusCode | undefined;
9017
9285
  }
9018
9286
  export type DraftStatusCode = DraftStatusCode.OK | DraftStatusCode.DraftOutdated | DraftStatusCode.ScriptRemoved | DraftStatusCode.DraftCommitted;
9019
9287
  /**
@@ -9122,6 +9390,8 @@ declare namespace Enum {
9122
9390
  }
9123
9391
  export const BestForDevice: BestForDevice;
9124
9392
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DragDetectorDragStyle>;
9393
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DragDetectorDragStyle | undefined;
9394
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DragDetectorDragStyle | undefined;
9125
9395
  }
9126
9396
  export type DragDetectorDragStyle = DragDetectorDragStyle.TranslateLine | DragDetectorDragStyle.TranslatePlane | DragDetectorDragStyle.TranslatePlaneOrLine | DragDetectorDragStyle.TranslateLineOrPlane | DragDetectorDragStyle.TranslateViewPlane | DragDetectorDragStyle.RotateAxis | DragDetectorDragStyle.RotateTrackball | DragDetectorDragStyle.Scriptable | DragDetectorDragStyle.BestForDevice;
9127
9397
  /**
@@ -9164,6 +9434,8 @@ declare namespace Enum {
9164
9434
  }
9165
9435
  export const Scriptable: Scriptable;
9166
9436
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DragDetectorPermissionPolicy>;
9437
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DragDetectorPermissionPolicy | undefined;
9438
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DragDetectorPermissionPolicy | undefined;
9167
9439
  }
9168
9440
  export type DragDetectorPermissionPolicy = DragDetectorPermissionPolicy.Nobody | DragDetectorPermissionPolicy.Everybody | DragDetectorPermissionPolicy.Scriptable;
9169
9441
  /**
@@ -9206,6 +9478,8 @@ declare namespace Enum {
9206
9478
  }
9207
9479
  export const Custom: Custom;
9208
9480
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DragDetectorResponseStyle>;
9481
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DragDetectorResponseStyle | undefined;
9482
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DragDetectorResponseStyle | undefined;
9209
9483
  }
9210
9484
  export type DragDetectorResponseStyle = DragDetectorResponseStyle.Geometric | DragDetectorResponseStyle.Physical | DragDetectorResponseStyle.Custom;
9211
9485
  /**
@@ -9231,6 +9505,8 @@ declare namespace Enum {
9231
9505
  }
9232
9506
  export const World: World;
9233
9507
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DraggerCoordinateSpace>;
9508
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DraggerCoordinateSpace | undefined;
9509
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DraggerCoordinateSpace | undefined;
9234
9510
  }
9235
9511
  export type DraggerCoordinateSpace = DraggerCoordinateSpace.Object | DraggerCoordinateSpace.World;
9236
9512
  /**
@@ -9256,6 +9532,8 @@ declare namespace Enum {
9256
9532
  }
9257
9533
  export const Physical: Physical;
9258
9534
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DraggerMovementMode>;
9535
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DraggerMovementMode | undefined;
9536
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DraggerMovementMode | undefined;
9259
9537
  }
9260
9538
  export type DraggerMovementMode = DraggerMovementMode.Geometric | DraggerMovementMode.Physical;
9261
9539
  /**
@@ -9290,6 +9568,8 @@ declare namespace Enum {
9290
9568
  }
9291
9569
  export const Vertical: Vertical;
9292
9570
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DraggingScrollBar>;
9571
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DraggingScrollBar | undefined;
9572
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DraggingScrollBar | undefined;
9293
9573
  }
9294
9574
  export type DraggingScrollBar = DraggingScrollBar.None | DraggingScrollBar.Horizontal | DraggingScrollBar.Vertical;
9295
9575
  /**
@@ -9332,6 +9612,8 @@ declare namespace Enum {
9332
9612
  }
9333
9613
  export const InOut: InOut;
9334
9614
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.EasingDirection>;
9615
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.EasingDirection | undefined;
9616
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.EasingDirection | undefined;
9335
9617
  }
9336
9618
  export type EasingDirection = EasingDirection.In | EasingDirection.Out | EasingDirection.InOut;
9337
9619
  /**
@@ -9462,6 +9744,8 @@ declare namespace Enum {
9462
9744
  }
9463
9745
  export const Cubic: Cubic;
9464
9746
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.EasingStyle>;
9747
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.EasingStyle | undefined;
9748
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.EasingStyle | undefined;
9465
9749
  }
9466
9750
  export type EasingStyle = EasingStyle.Linear | EasingStyle.Sine | EasingStyle.Back | EasingStyle.Quad | EasingStyle.Quart | EasingStyle.Quint | EasingStyle.Bounce | EasingStyle.Elastic | EasingStyle.Exponential | EasingStyle.Circular | EasingStyle.Cubic;
9467
9751
  /**
@@ -9496,6 +9780,8 @@ declare namespace Enum {
9496
9780
  }
9497
9781
  export const Disallowed: Disallowed;
9498
9782
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.EditableStatus>;
9783
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.EditableStatus | undefined;
9784
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.EditableStatus | undefined;
9499
9785
  }
9500
9786
  export type EditableStatus = EditableStatus.Unknown | EditableStatus.Allowed | EditableStatus.Disallowed;
9501
9787
  /**
@@ -9538,6 +9824,8 @@ declare namespace Enum {
9538
9824
  }
9539
9825
  export const Never: Never;
9540
9826
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ElasticBehavior>;
9827
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ElasticBehavior | undefined;
9828
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ElasticBehavior | undefined;
9541
9829
  }
9542
9830
  export type ElasticBehavior = ElasticBehavior.WhenScrollable | ElasticBehavior.Always | ElasticBehavior.Never;
9543
9831
  /**
@@ -9608,6 +9896,8 @@ declare namespace Enum {
9608
9896
  }
9609
9897
  export const Skip16: Skip16;
9610
9898
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.EnviromentalPhysicsThrottle>;
9899
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.EnviromentalPhysicsThrottle | undefined;
9900
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.EnviromentalPhysicsThrottle | undefined;
9611
9901
  }
9612
9902
  export type EnviromentalPhysicsThrottle = EnviromentalPhysicsThrottle.DefaultAuto | EnviromentalPhysicsThrottle.Disabled | EnviromentalPhysicsThrottle.Always | EnviromentalPhysicsThrottle.Skip2 | EnviromentalPhysicsThrottle.Skip4 | EnviromentalPhysicsThrottle.Skip8 | EnviromentalPhysicsThrottle.Skip16;
9613
9903
  /**
@@ -9633,6 +9923,8 @@ declare namespace Enum {
9633
9923
  }
9634
9924
  export const CreatorAssetsCreate: CreatorAssetsCreate;
9635
9925
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ExperienceAuthScope>;
9926
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ExperienceAuthScope | undefined;
9927
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ExperienceAuthScope | undefined;
9636
9928
  }
9637
9929
  export type ExperienceAuthScope = ExperienceAuthScope.DefaultScope | ExperienceAuthScope.CreatorAssetsCreate;
9638
9930
  /**
@@ -9666,6 +9958,8 @@ declare namespace Enum {
9666
9958
  */
9667
9959
  export const CratersAndDebris: Craters;
9668
9960
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ExplosionType>;
9961
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ExplosionType | undefined;
9962
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ExplosionType | undefined;
9669
9963
  }
9670
9964
  export type ExplosionType = ExplosionType.NoCraters | ExplosionType.Craters;
9671
9965
  /**
@@ -9700,6 +9994,8 @@ declare namespace Enum {
9700
9994
  }
9701
9995
  export const LODCount: LODCount;
9702
9996
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.FACSDataLod>;
9997
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.FACSDataLod | undefined;
9998
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FACSDataLod | undefined;
9703
9999
  }
9704
10000
  export type FACSDataLod = FACSDataLod.LOD0 | FACSDataLod.LOD1 | FACSDataLod.LODCount;
9705
10001
  /**
@@ -9752,6 +10048,8 @@ declare namespace Enum {
9752
10048
  }
9753
10049
  export const Server: Server;
9754
10050
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.FacialAnimationStreamingState>;
10051
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.FacialAnimationStreamingState | undefined;
10052
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FacialAnimationStreamingState | undefined;
9755
10053
  }
9756
10054
  export type FacialAnimationStreamingState = FacialAnimationStreamingState.None | FacialAnimationStreamingState.Audio | FacialAnimationStreamingState.Video | FacialAnimationStreamingState.Place | FacialAnimationStreamingState.Server;
9757
10055
  /**
@@ -9786,6 +10084,8 @@ declare namespace Enum {
9786
10084
  }
9787
10085
  export const MaxAxis: MaxAxis;
9788
10086
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.FieldOfViewMode>;
10087
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.FieldOfViewMode | undefined;
10088
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FieldOfViewMode | undefined;
9789
10089
  }
9790
10090
  export type FieldOfViewMode = FieldOfViewMode.Vertical | FieldOfViewMode.Diagonal | FieldOfViewMode.MaxAxis;
9791
10091
  /**
@@ -9817,6 +10117,8 @@ declare namespace Enum {
9817
10117
  }
9818
10118
  export const Vertical: Vertical;
9819
10119
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.FillDirection>;
10120
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.FillDirection | undefined;
10121
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FillDirection | undefined;
9820
10122
  }
9821
10123
  export type FillDirection = FillDirection.Horizontal | FillDirection.Vertical;
9822
10124
  /**
@@ -9995,6 +10297,8 @@ declare namespace Enum {
9995
10297
  }
9996
10298
  export const WildcardInProperty: WildcardInProperty;
9997
10299
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.FilterErrorType>;
10300
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.FilterErrorType | undefined;
10301
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FilterErrorType | undefined;
9998
10302
  }
9999
10303
  export type FilterErrorType = FilterErrorType.BackslashNotEscapingAnything | FilterErrorType.BadBespokeFilter | FilterErrorType.BadName | FilterErrorType.IncompleteOr | FilterErrorType.IncompleteParenthesis | FilterErrorType.InvalidDoubleStar | FilterErrorType.InvalidTilde | FilterErrorType.PropertyBadOperator | FilterErrorType.PropertyDoesNotExist | FilterErrorType.PropertyInvalidField | FilterErrorType.PropertyInvalidValue | FilterErrorType.PropertyUnsupportedFields | FilterErrorType.PropertyUnsupportedProperty | FilterErrorType.UnexpectedNameIndex | FilterErrorType.UnexpectedToken | FilterErrorType.UnfinishedBinaryOperator | FilterErrorType.UnfinishedQuote | FilterErrorType.UnknownBespokeFilter | FilterErrorType.WildcardInProperty;
10000
10304
  /**
@@ -10026,6 +10330,8 @@ declare namespace Enum {
10026
10330
  }
10027
10331
  export const Rejected: Rejected;
10028
10332
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.FilterResult>;
10333
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.FilterResult | undefined;
10334
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FilterResult | undefined;
10029
10335
  }
10030
10336
  export type FilterResult = FilterResult.Accepted | FilterResult.Rejected;
10031
10337
  /**
@@ -10066,6 +10372,8 @@ declare namespace Enum {
10066
10372
  }
10067
10373
  export const Append: Append;
10068
10374
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.FinishRecordingOperation>;
10375
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.FinishRecordingOperation | undefined;
10376
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FinishRecordingOperation | undefined;
10069
10377
  }
10070
10378
  export type FinishRecordingOperation = FinishRecordingOperation.Cancel | FinishRecordingOperation.Commit | FinishRecordingOperation.Append;
10071
10379
  /**
@@ -10108,6 +10416,8 @@ declare namespace Enum {
10108
10416
  }
10109
10417
  export const UsePreciseGeometry: UsePreciseGeometry;
10110
10418
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.FluidFidelity>;
10419
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.FluidFidelity | undefined;
10420
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FluidFidelity | undefined;
10111
10421
  }
10112
10422
  export type FluidFidelity = FluidFidelity.Automatic | FluidFidelity.UseCollisionGeometry | FluidFidelity.UsePreciseGeometry;
10113
10423
  /**
@@ -10139,6 +10449,8 @@ declare namespace Enum {
10139
10449
  }
10140
10450
  export const Experimental: Experimental;
10141
10451
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.FluidForces>;
10452
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.FluidForces | undefined;
10453
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FluidForces | undefined;
10142
10454
  }
10143
10455
  export type FluidForces = FluidForces.Default | FluidForces.Experimental;
10144
10456
  /**
@@ -10749,6 +11061,8 @@ declare namespace Enum {
10749
11061
  }
10750
11062
  export const Unknown: Unknown;
10751
11063
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.Font>;
11064
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.Font | undefined;
11065
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.Font | undefined;
10752
11066
  }
10753
11067
  export type Font = Font.Legacy | Font.Arial | Font.ArialBold | Font.SourceSans | Font.SourceSansBold | Font.SourceSansLight | Font.SourceSansItalic | Font.Bodoni | Font.Garamond | Font.Cartoon | Font.Code | Font.Highway | Font.SciFi | Font.Arcade | Font.Fantasy | Font.Antique | Font.SourceSansSemibold | Font.Gotham | Font.GothamMedium | Font.GothamBold | Font.GothamBlack | Font.AmaticSC | Font.Bangers | Font.Creepster | Font.DenkOne | Font.Fondamento | Font.FredokaOne | Font.GrenzeGotisch | Font.IndieFlower | Font.JosefinSans | Font.Jura | Font.Kalam | Font.LuckiestGuy | Font.Merriweather | Font.Michroma | Font.Nunito | Font.Oswald | Font.PatrickHand | Font.PermanentMarker | Font.Roboto | Font.RobotoCondensed | Font.RobotoMono | Font.Sarpanch | Font.SpecialElite | Font.TitilliumWeb | Font.Ubuntu | Font.BuilderSans | Font.BuilderSansMedium | Font.BuilderSansBold | Font.BuilderSansExtraBold | Font.Arimo | Font.ArimoBold | Font.Unknown;
10754
11068
  /**
@@ -10921,6 +11235,8 @@ declare namespace Enum {
10921
11235
  }
10922
11236
  export const Size96: Size96;
10923
11237
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.FontSize>;
11238
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.FontSize | undefined;
11239
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FontSize | undefined;
10924
11240
  }
10925
11241
  export type FontSize = FontSize.Size8 | FontSize.Size9 | FontSize.Size10 | FontSize.Size11 | FontSize.Size12 | FontSize.Size14 | FontSize.Size18 | FontSize.Size24 | FontSize.Size36 | FontSize.Size48 | FontSize.Size28 | FontSize.Size32 | FontSize.Size42 | FontSize.Size60 | FontSize.Size96;
10926
11242
  /**
@@ -10952,6 +11268,8 @@ declare namespace Enum {
10952
11268
  }
10953
11269
  export const Italic: Italic;
10954
11270
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.FontStyle>;
11271
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.FontStyle | undefined;
11272
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FontStyle | undefined;
10955
11273
  }
10956
11274
  export type FontStyle = FontStyle.Normal | FontStyle.Italic;
10957
11275
  /**
@@ -11044,6 +11362,8 @@ declare namespace Enum {
11044
11362
  }
11045
11363
  export const Heavy: Heavy;
11046
11364
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.FontWeight>;
11365
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.FontWeight | undefined;
11366
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FontWeight | undefined;
11047
11367
  }
11048
11368
  export type FontWeight = FontWeight.Thin | FontWeight.ExtraLight | FontWeight.Light | FontWeight.Regular | FontWeight.Medium | FontWeight.SemiBold | FontWeight.Bold | FontWeight.ExtraBold | FontWeight.Heavy;
11049
11369
  /**
@@ -11075,6 +11395,8 @@ declare namespace Enum {
11075
11395
  }
11076
11396
  export const PerAxis: PerAxis;
11077
11397
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ForceLimitMode>;
11398
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ForceLimitMode | undefined;
11399
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ForceLimitMode | undefined;
11078
11400
  }
11079
11401
  export type ForceLimitMode = ForceLimitMode.Magnitude | ForceLimitMode.PerAxis;
11080
11402
  /**
@@ -11130,6 +11452,8 @@ declare namespace Enum {
11130
11452
  }
11131
11453
  export const Custom: Custom;
11132
11454
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.FormFactor>;
11455
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.FormFactor | undefined;
11456
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FormFactor | undefined;
11133
11457
  }
11134
11458
  export type FormFactor = FormFactor.Symmetric | FormFactor.Brick | FormFactor.Plate | FormFactor.Custom;
11135
11459
  /**
@@ -11216,6 +11540,8 @@ declare namespace Enum {
11216
11540
  }
11217
11541
  export const DropShadow: DropShadow;
11218
11542
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.FrameStyle>;
11543
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.FrameStyle | undefined;
11544
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FrameStyle | undefined;
11219
11545
  }
11220
11546
  export type FrameStyle = FrameStyle.Custom | FrameStyle.ChatBlue | FrameStyle.RobloxSquare | FrameStyle.RobloxRound | FrameStyle.ChatGreen | FrameStyle.ChatRed | FrameStyle.DropShadow;
11221
11547
  /**
@@ -11250,6 +11576,8 @@ declare namespace Enum {
11250
11576
  }
11251
11577
  export const Off: Off;
11252
11578
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.FramerateManagerMode>;
11579
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.FramerateManagerMode | undefined;
11580
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FramerateManagerMode | undefined;
11253
11581
  }
11254
11582
  export type FramerateManagerMode = FramerateManagerMode.Automatic | FramerateManagerMode.On | FramerateManagerMode.Off;
11255
11583
  /**
@@ -11301,6 +11629,8 @@ declare namespace Enum {
11301
11629
  }
11302
11630
  export const Deny: Deny;
11303
11631
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.FriendRequestEvent>;
11632
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.FriendRequestEvent | undefined;
11633
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FriendRequestEvent | undefined;
11304
11634
  }
11305
11635
  export type FriendRequestEvent = FriendRequestEvent.Issue | FriendRequestEvent.Revoke | FriendRequestEvent.Accept | FriendRequestEvent.Deny;
11306
11636
  /**
@@ -11363,6 +11693,8 @@ declare namespace Enum {
11363
11693
  }
11364
11694
  export const FriendRequestReceived: FriendRequestReceived;
11365
11695
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.FriendStatus>;
11696
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.FriendStatus | undefined;
11697
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FriendStatus | undefined;
11366
11698
  }
11367
11699
  export type FriendStatus = FriendStatus.Unknown | FriendStatus.NotFriend | FriendStatus.Friend | FriendStatus.FriendRequestSent | FriendStatus.FriendRequestReceived;
11368
11700
  /**
@@ -11405,6 +11737,8 @@ declare namespace Enum {
11405
11737
  }
11406
11738
  export const Error: Error;
11407
11739
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.FunctionalTestResult>;
11740
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.FunctionalTestResult | undefined;
11741
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FunctionalTestResult | undefined;
11408
11742
  }
11409
11743
  export type FunctionalTestResult = FunctionalTestResult.Passed | FunctionalTestResult.Warning | FunctionalTestResult.Error;
11410
11744
  /**
@@ -11447,6 +11781,8 @@ declare namespace Enum {
11447
11781
  }
11448
11782
  export const PlayerChoice: PlayerChoice;
11449
11783
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.GameAvatarType>;
11784
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.GameAvatarType | undefined;
11785
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.GameAvatarType | undefined;
11450
11786
  }
11451
11787
  export type GameAvatarType = GameAvatarType.R6 | GameAvatarType.R15 | GameAvatarType.PlayerChoice;
11452
11788
  /**
@@ -11490,6 +11826,8 @@ declare namespace Enum {
11490
11826
  }
11491
11827
  export const XboxOne: XboxOne;
11492
11828
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.GamepadType>;
11829
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.GamepadType | undefined;
11830
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.GamepadType | undefined;
11493
11831
  }
11494
11832
  export type GamepadType = GamepadType.Unknown | GamepadType.PS4 | GamepadType.PS5 | GamepadType.XboxOne;
11495
11833
  /**
@@ -11525,6 +11863,8 @@ declare namespace Enum {
11525
11863
  }
11526
11864
  export const MatchingGenreOnly: MatchingGenreOnly;
11527
11865
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.GearGenreSetting>;
11866
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.GearGenreSetting | undefined;
11867
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.GearGenreSetting | undefined;
11528
11868
  }
11529
11869
  export type GearGenreSetting = GearGenreSetting.AllGenres | GearGenreSetting.MatchingGenreOnly;
11530
11870
  /**
@@ -11651,6 +11991,8 @@ declare namespace Enum {
11651
11991
  }
11652
11992
  export const Transport: Transport;
11653
11993
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.GearType>;
11994
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.GearType | undefined;
11995
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.GearType | undefined;
11654
11996
  }
11655
11997
  export type GearType = GearType.MeleeWeapons | GearType.RangedWeapons | GearType.Explosives | GearType.PowerUps | GearType.NavigationEnhancers | GearType.MusicalInstruments | GearType.SocialItems | GearType.BuildingTools | GearType.Transport;
11656
11998
  /**
@@ -11816,6 +12158,8 @@ declare namespace Enum {
11816
12158
  }
11817
12159
  export const Tutorial: Tutorial;
11818
12160
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.Genre>;
12161
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.Genre | undefined;
12162
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.Genre | undefined;
11819
12163
  }
11820
12164
  export type Genre = Genre.All | Genre.TownAndCity | Genre.Fantasy | Genre.SciFi | Genre.Ninja | Genre.Scary | Genre.Pirate | Genre.Adventure | Genre.Sports | Genre.Funny | Genre.WildWest | Genre.War | Genre.SkatePark | Genre.Tutorial;
11821
12165
  /**
@@ -11891,6 +12235,8 @@ declare namespace Enum {
11891
12235
  }
11892
12236
  export const NoGraphics: NoGraphics;
11893
12237
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.GraphicsMode>;
12238
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.GraphicsMode | undefined;
12239
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.GraphicsMode | undefined;
11894
12240
  }
11895
12241
  export type GraphicsMode = GraphicsMode.Automatic | GraphicsMode.Direct3D11 | GraphicsMode.OpenGL | GraphicsMode.Metal | GraphicsMode.Vulkan | GraphicsMode.NoGraphics;
11896
12242
  /**
@@ -11925,6 +12271,8 @@ declare namespace Enum {
11925
12271
  }
11926
12272
  export const Quality: Quality;
11927
12273
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.GraphicsOptimizationMode>;
12274
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.GraphicsOptimizationMode | undefined;
12275
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.GraphicsOptimizationMode | undefined;
11928
12276
  }
11929
12277
  export type GraphicsOptimizationMode = GraphicsOptimizationMode.Performance | GraphicsOptimizationMode.Balanced | GraphicsOptimizationMode.Quality;
11930
12278
  /**
@@ -11976,6 +12324,8 @@ declare namespace Enum {
11976
12324
  }
11977
12325
  export const NonInteractable: NonInteractable;
11978
12326
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.GuiState>;
12327
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.GuiState | undefined;
12328
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.GuiState | undefined;
11979
12329
  }
11980
12330
  export type GuiState = GuiState.Idle | GuiState.Hover | GuiState.Press | GuiState.NonInteractable;
11981
12331
  /**
@@ -12028,6 +12378,8 @@ declare namespace Enum {
12028
12378
  }
12029
12379
  export const CoreBillboards: CoreBillboards;
12030
12380
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.GuiType>;
12381
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.GuiType | undefined;
12382
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.GuiType | undefined;
12031
12383
  }
12032
12384
  export type GuiType = GuiType.Core | GuiType.Custom | GuiType.PlayerNameplates | GuiType.CustomBillboards | GuiType.CoreBillboards;
12033
12385
  /**
@@ -12053,6 +12405,8 @@ declare namespace Enum {
12053
12405
  }
12054
12406
  export const Movement: Movement;
12055
12407
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.HandlesStyle>;
12408
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.HandlesStyle | undefined;
12409
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.HandlesStyle | undefined;
12056
12410
  }
12057
12411
  export type HandlesStyle = HandlesStyle.Resize | HandlesStyle.Movement;
12058
12412
  /**
@@ -12114,6 +12468,8 @@ declare namespace Enum {
12114
12468
  }
12115
12469
  export const GameplayCollision: GameplayCollision;
12116
12470
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.HapticEffectType>;
12471
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.HapticEffectType | undefined;
12472
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.HapticEffectType | undefined;
12117
12473
  }
12118
12474
  export type HapticEffectType = HapticEffectType.Custom | HapticEffectType.UIHover | HapticEffectType.UIClick | HapticEffectType.UINotification | HapticEffectType.GameplayExplosion | HapticEffectType.GameplayCollision;
12119
12475
  /**
@@ -12145,6 +12501,8 @@ declare namespace Enum {
12145
12501
  }
12146
12502
  export const Occluded: Occluded;
12147
12503
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.HighlightDepthMode>;
12504
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.HighlightDepthMode | undefined;
12505
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.HighlightDepthMode | undefined;
12148
12506
  }
12149
12507
  export type HighlightDepthMode = HighlightDepthMode.AlwaysOnTop | HighlightDepthMode.Occluded;
12150
12508
  /**
@@ -12187,6 +12545,8 @@ declare namespace Enum {
12187
12545
  }
12188
12546
  export const Right: Right;
12189
12547
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.HorizontalAlignment>;
12548
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.HorizontalAlignment | undefined;
12549
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.HorizontalAlignment | undefined;
12190
12550
  }
12191
12551
  export type HorizontalAlignment = HorizontalAlignment.Center | HorizontalAlignment.Left | HorizontalAlignment.Right;
12192
12552
  /**
@@ -12249,6 +12609,8 @@ declare namespace Enum {
12249
12609
  }
12250
12610
  export const VeryFast: VeryFast;
12251
12611
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.HoverAnimateSpeed>;
12612
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.HoverAnimateSpeed | undefined;
12613
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.HoverAnimateSpeed | undefined;
12252
12614
  }
12253
12615
  export type HoverAnimateSpeed = HoverAnimateSpeed.VerySlow | HoverAnimateSpeed.Slow | HoverAnimateSpeed.Medium | HoverAnimateSpeed.Fast | HoverAnimateSpeed.VeryFast;
12254
12616
  /**
@@ -12301,6 +12663,8 @@ declare namespace Enum {
12301
12663
  }
12302
12664
  export const InternalRedirectRefresh: InternalRedirectRefresh;
12303
12665
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.HttpCachePolicy>;
12666
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.HttpCachePolicy | undefined;
12667
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.HttpCachePolicy | undefined;
12304
12668
  }
12305
12669
  export type HttpCachePolicy = HttpCachePolicy.None | HttpCachePolicy.Full | HttpCachePolicy.DataOnly | HttpCachePolicy.Default | HttpCachePolicy.InternalRedirectRefresh;
12306
12670
  /**
@@ -12326,6 +12690,8 @@ declare namespace Enum {
12326
12690
  }
12327
12691
  export const Gzip: Gzip;
12328
12692
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.HttpCompression>;
12693
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.HttpCompression | undefined;
12694
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.HttpCompression | undefined;
12329
12695
  }
12330
12696
  export type HttpCompression = HttpCompression.None | HttpCompression.Gzip;
12331
12697
  /**
@@ -12390,6 +12756,8 @@ declare namespace Enum {
12390
12756
  }
12391
12757
  export const TextXml: TextXml;
12392
12758
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.HttpContentType>;
12759
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.HttpContentType | undefined;
12760
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.HttpContentType | undefined;
12393
12761
  }
12394
12762
  export type HttpContentType = HttpContentType.ApplicationJson | HttpContentType.ApplicationXml | HttpContentType.ApplicationUrlEncoded | HttpContentType.TextPlain | HttpContentType.TextXml;
12395
12763
  /**
@@ -12514,6 +12882,8 @@ declare namespace Enum {
12514
12882
  }
12515
12883
  export const Unknown: Unknown;
12516
12884
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.HttpError>;
12885
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.HttpError | undefined;
12886
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.HttpError | undefined;
12517
12887
  }
12518
12888
  export type HttpError = HttpError.OK | HttpError.InvalidUrl | HttpError.DnsResolve | HttpError.ConnectFail | HttpError.OutOfMemory | HttpError.TimedOut | HttpError.TooManyRedirects | HttpError.InvalidRedirect | HttpError.NetFail | HttpError.Aborted | HttpError.SslConnectFail | HttpError.SslVerificationFail | HttpError.Unknown;
12519
12889
  /**
@@ -12584,6 +12954,8 @@ declare namespace Enum {
12584
12954
  }
12585
12955
  export const Localization: Localization;
12586
12956
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.HttpRequestType>;
12957
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.HttpRequestType | undefined;
12958
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.HttpRequestType | undefined;
12587
12959
  }
12588
12960
  export type HttpRequestType = HttpRequestType.Default | HttpRequestType.MarketplaceService | HttpRequestType.Players | HttpRequestType.Chat | HttpRequestType.Avatar | HttpRequestType.Analytics | HttpRequestType.Localization;
12589
12961
  /**
@@ -12615,6 +12987,8 @@ declare namespace Enum {
12615
12987
  }
12616
12988
  export const InnerBox: InnerBox;
12617
12989
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.HumanoidCollisionType>;
12990
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.HumanoidCollisionType | undefined;
12991
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.HumanoidCollisionType | undefined;
12618
12992
  }
12619
12993
  export type HumanoidCollisionType = HumanoidCollisionType.OuterBox | HumanoidCollisionType.InnerBox;
12620
12994
  /**
@@ -12657,6 +13031,8 @@ declare namespace Enum {
12657
13031
  }
12658
13032
  export const None: None;
12659
13033
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.HumanoidDisplayDistanceType>;
13034
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.HumanoidDisplayDistanceType | undefined;
13035
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.HumanoidDisplayDistanceType | undefined;
12660
13036
  }
12661
13037
  export type HumanoidDisplayDistanceType = HumanoidDisplayDistanceType.Viewer | HumanoidDisplayDistanceType.Subject | HumanoidDisplayDistanceType.None;
12662
13038
  /**
@@ -12699,6 +13075,8 @@ declare namespace Enum {
12699
13075
  }
12700
13076
  export const AlwaysOff: AlwaysOff;
12701
13077
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.HumanoidHealthDisplayType>;
13078
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.HumanoidHealthDisplayType | undefined;
13079
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.HumanoidHealthDisplayType | undefined;
12702
13080
  }
12703
13081
  export type HumanoidHealthDisplayType = HumanoidHealthDisplayType.DisplayWhenDamaged | HumanoidHealthDisplayType.AlwaysOn | HumanoidHealthDisplayType.AlwaysOff;
12704
13082
  /**
@@ -12730,6 +13108,8 @@ declare namespace Enum {
12730
13108
  }
12731
13109
  export const R15: R15;
12732
13110
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.HumanoidRigType>;
13111
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.HumanoidRigType | undefined;
13112
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.HumanoidRigType | undefined;
12733
13113
  }
12734
13114
  export type HumanoidRigType = HumanoidRigType.R6 | HumanoidRigType.R15;
12735
13115
  /**
@@ -12926,6 +13306,8 @@ declare namespace Enum {
12926
13306
  }
12927
13307
  export const None: None;
12928
13308
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.HumanoidStateType>;
13309
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.HumanoidStateType | undefined;
13310
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.HumanoidStateType | undefined;
12929
13311
  }
12930
13312
  export type HumanoidStateType = HumanoidStateType.FallingDown | HumanoidStateType.Ragdoll | HumanoidStateType.GettingUp | HumanoidStateType.Jumping | HumanoidStateType.Swimming | HumanoidStateType.Freefall | HumanoidStateType.Flying | HumanoidStateType.Landed | HumanoidStateType.Running | HumanoidStateType.RunningNoPhysics | HumanoidStateType.StrafingNoPhysics | HumanoidStateType.Climbing | HumanoidStateType.Seated | HumanoidStateType.PlatformStanding | HumanoidStateType.Dead | HumanoidStateType.Physics | HumanoidStateType.None;
12931
13313
  /**
@@ -12966,6 +13348,8 @@ declare namespace Enum {
12966
13348
  }
12967
13349
  export const IncludeContactedMechanisms: IncludeContactedMechanisms;
12968
13350
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.IKCollisionsMode>;
13351
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.IKCollisionsMode | undefined;
13352
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.IKCollisionsMode | undefined;
12969
13353
  }
12970
13354
  export type IKCollisionsMode = IKCollisionsMode.NoCollisions | IKCollisionsMode.OtherMechanismsAnchored | IKCollisionsMode.IncludeContactedMechanisms;
12971
13355
  /**
@@ -13008,6 +13392,8 @@ declare namespace Enum {
13008
13392
  }
13009
13393
  export const Enabled: Enabled;
13010
13394
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.IKControlConstraintSupport>;
13395
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.IKControlConstraintSupport | undefined;
13396
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.IKControlConstraintSupport | undefined;
13011
13397
  }
13012
13398
  export type IKControlConstraintSupport = IKControlConstraintSupport.Default | IKControlConstraintSupport.Disabled | IKControlConstraintSupport.Enabled;
13013
13399
  /**
@@ -13061,6 +13447,8 @@ declare namespace Enum {
13061
13447
  }
13062
13448
  export const LookAt: LookAt;
13063
13449
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.IKControlType>;
13450
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.IKControlType | undefined;
13451
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.IKControlType | undefined;
13064
13452
  }
13065
13453
  export type IKControlType = IKControlType.Transform | IKControlType.Position | IKControlType.Rotation | IKControlType.LookAt;
13066
13454
  /**
@@ -13131,6 +13519,8 @@ declare namespace Enum {
13131
13519
  }
13132
13520
  export const ErrorTimedOut: ErrorTimedOut;
13133
13521
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.IXPLoadingStatus>;
13522
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.IXPLoadingStatus | undefined;
13523
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.IXPLoadingStatus | undefined;
13134
13524
  }
13135
13525
  export type IXPLoadingStatus = IXPLoadingStatus.None | IXPLoadingStatus.Pending | IXPLoadingStatus.Initialized | IXPLoadingStatus.ErrorInvalidUser | IXPLoadingStatus.ErrorConnection | IXPLoadingStatus.ErrorJsonParse | IXPLoadingStatus.ErrorTimedOut;
13136
13526
  /**
@@ -13173,6 +13563,8 @@ declare namespace Enum {
13173
13563
  }
13174
13564
  export const LockCanvasColor: LockCanvasColor;
13175
13565
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ImageAlphaType>;
13566
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ImageAlphaType | undefined;
13567
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ImageAlphaType | undefined;
13176
13568
  }
13177
13569
  export type ImageAlphaType = ImageAlphaType.Default | ImageAlphaType.LockCanvasAlpha | ImageAlphaType.LockCanvasColor;
13178
13570
  /**
@@ -13237,6 +13629,8 @@ declare namespace Enum {
13237
13629
  }
13238
13630
  export const AlphaBlend: AlphaBlend;
13239
13631
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ImageCombineType>;
13632
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ImageCombineType | undefined;
13633
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ImageCombineType | undefined;
13240
13634
  }
13241
13635
  export type ImageCombineType = ImageCombineType.BlendSourceOver | ImageCombineType.Overwrite | ImageCombineType.Add | ImageCombineType.Multiply | ImageCombineType.AlphaBlend;
13242
13636
  /**
@@ -13279,6 +13673,8 @@ declare namespace Enum {
13279
13673
  }
13280
13674
  export const Center: Center;
13281
13675
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.InOut>;
13676
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.InOut | undefined;
13677
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.InOut | undefined;
13282
13678
  }
13283
13679
  export type InOut = InOut.Edge | InOut.Inset | InOut.Center;
13284
13680
  /**
@@ -13337,6 +13733,8 @@ declare namespace Enum {
13337
13733
  }
13338
13734
  export const Bundle: Bundle;
13339
13735
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.InfoType>;
13736
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.InfoType | undefined;
13737
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.InfoType | undefined;
13340
13738
  }
13341
13739
  export type InfoType = InfoType.Asset | InfoType.Product | InfoType.GamePass | InfoType.Subscription | InfoType.Bundle;
13342
13740
  /**
@@ -13401,6 +13799,8 @@ declare namespace Enum {
13401
13799
  }
13402
13800
  export const Float: Float;
13403
13801
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.InitialDockState>;
13802
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.InitialDockState | undefined;
13803
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.InitialDockState | undefined;
13404
13804
  }
13405
13805
  export type InitialDockState = InitialDockState.Top | InitialDockState.Bottom | InitialDockState.Left | InitialDockState.Right | InitialDockState.Float;
13406
13806
  /**
@@ -13487,6 +13887,8 @@ declare namespace Enum {
13487
13887
  }
13488
13888
  export const Sin: Sin;
13489
13889
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.InputType>;
13890
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.InputType | undefined;
13891
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.InputType | undefined;
13490
13892
  }
13491
13893
  export type InputType = InputType.NoInput | InputType.Constant | InputType.Sin;
13492
13894
  /**
@@ -13521,6 +13923,8 @@ declare namespace Enum {
13521
13923
  }
13522
13924
  export const Enabled: Enabled;
13523
13925
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.InterpolationThrottlingMode>;
13926
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.InterpolationThrottlingMode | undefined;
13927
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.InterpolationThrottlingMode | undefined;
13524
13928
  }
13525
13929
  export type InterpolationThrottlingMode = InterpolationThrottlingMode.Default | InterpolationThrottlingMode.Disabled | InterpolationThrottlingMode.Enabled;
13526
13930
  /**
@@ -13574,6 +13978,8 @@ declare namespace Enum {
13574
13978
  }
13575
13979
  export const Missed: Missed;
13576
13980
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.InviteState>;
13981
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.InviteState | undefined;
13982
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.InviteState | undefined;
13577
13983
  }
13578
13984
  export type InviteState = InviteState.Placed | InviteState.Accepted | InviteState.Declined | InviteState.Missed;
13579
13985
  /**
@@ -13638,6 +14044,8 @@ declare namespace Enum {
13638
14044
  }
13639
14045
  export const Stretch: Stretch;
13640
14046
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ItemLineAlignment>;
14047
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ItemLineAlignment | undefined;
14048
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ItemLineAlignment | undefined;
13641
14049
  }
13642
14050
  export type ItemLineAlignment = ItemLineAlignment.Automatic | ItemLineAlignment.Start | ItemLineAlignment.Center | ItemLineAlignment.End | ItemLineAlignment.Stretch;
13643
14051
  /**
@@ -13654,6 +14062,8 @@ declare namespace Enum {
13654
14062
  }
13655
14063
  export const CreatedItemAttribution: CreatedItemAttribution;
13656
14064
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.JoinSource>;
14065
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.JoinSource | undefined;
14066
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.JoinSource | undefined;
13657
14067
  }
13658
14068
  export type JoinSource = JoinSource.CreatedItemAttribution;
13659
14069
  /**
@@ -13696,6 +14106,8 @@ declare namespace Enum {
13696
14106
  }
13697
14107
  export const None: None;
13698
14108
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.JointCreationMode>;
14109
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.JointCreationMode | undefined;
14110
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.JointCreationMode | undefined;
13699
14111
  }
13700
14112
  export type JointCreationMode = JointCreationMode.All | JointCreationMode.Surface | JointCreationMode.None;
13701
14113
  /**
@@ -16562,6 +16974,8 @@ declare namespace Enum {
16562
16974
  }
16563
16975
  export const MouseY: MouseY;
16564
16976
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.KeyCode>;
16977
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.KeyCode | undefined;
16978
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.KeyCode | undefined;
16565
16979
  }
16566
16980
  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.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.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.MouseBackButton | KeyCode.MouseNoButton | KeyCode.MouseX | KeyCode.MouseY;
16567
16981
  /**
@@ -16604,6 +17018,8 @@ declare namespace Enum {
16604
17018
  }
16605
17019
  export const Cubic: Cubic;
16606
17020
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.KeyInterpolationMode>;
17021
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.KeyInterpolationMode | undefined;
17022
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.KeyInterpolationMode | undefined;
16607
17023
  }
16608
17024
  export type KeyInterpolationMode = KeyInterpolationMode.Constant | KeyInterpolationMode.Linear | KeyInterpolationMode.Cubic;
16609
17025
  /**
@@ -16635,6 +17051,8 @@ declare namespace Enum {
16635
17051
  }
16636
17052
  export const Exclude: Exclude;
16637
17053
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.KeywordFilterType>;
17054
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.KeywordFilterType | undefined;
17055
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.KeywordFilterType | undefined;
16638
17056
  }
16639
17057
  export type KeywordFilterType = KeywordFilterType.Include | KeywordFilterType.Exclude;
16640
17058
  /**
@@ -16651,6 +17069,8 @@ declare namespace Enum {
16651
17069
  }
16652
17070
  export const Default: Default;
16653
17071
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.Language>;
17072
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.Language | undefined;
17073
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.Language | undefined;
16654
17074
  }
16655
17075
  export type Language = Language.Default;
16656
17076
  /**
@@ -16693,6 +17113,8 @@ declare namespace Enum {
16693
17113
  }
16694
17114
  export const Right: Right;
16695
17115
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.LeftRight>;
17116
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.LeftRight | undefined;
17117
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.LeftRight | undefined;
16696
17118
  }
16697
17119
  export type LeftRight = LeftRight.Left | LeftRight.Center | LeftRight.Right;
16698
17120
  /**
@@ -16871,6 +17293,8 @@ declare namespace Enum {
16871
17293
  }
16872
17294
  export const ReservedSpecial: ReservedSpecial;
16873
17295
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.LexemeType>;
17296
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.LexemeType | undefined;
17297
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.LexemeType | undefined;
16874
17298
  }
16875
17299
  export type LexemeType = LexemeType.Eof | LexemeType.Name | LexemeType.QuotedString | LexemeType.Number | LexemeType.And | LexemeType.Or | LexemeType.Equal | LexemeType.TildeEqual | LexemeType.GreaterThan | LexemeType.GreaterThanEqual | LexemeType.LessThan | LexemeType.LessThanEqual | LexemeType.Colon | LexemeType.Dot | LexemeType.LeftParenthesis | LexemeType.RightParenthesis | LexemeType.Star | LexemeType.DoubleStar | LexemeType.ReservedSpecial;
16876
17300
  /**
@@ -16896,6 +17320,8 @@ declare namespace Enum {
16896
17320
  }
16897
17321
  export const Soft: Soft;
16898
17322
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.LightingStyle>;
17323
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.LightingStyle | undefined;
17324
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.LightingStyle | undefined;
16899
17325
  }
16900
17326
  export type LightingStyle = LightingStyle.Realistic | LightingStyle.Soft;
16901
17327
  /**
@@ -16982,6 +17408,8 @@ declare namespace Enum {
16982
17408
  }
16983
17409
  export const Unknown: Unknown;
16984
17410
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.Limb>;
17411
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.Limb | undefined;
17412
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.Limb | undefined;
16985
17413
  }
16986
17414
  export type Limb = Limb.Head | Limb.Torso | Limb.LeftArm | Limb.RightArm | Limb.LeftLeg | Limb.RightLeg | Limb.Unknown;
16987
17415
  /**
@@ -17024,6 +17452,8 @@ declare namespace Enum {
17024
17452
  }
17025
17453
  export const Miter: Miter;
17026
17454
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.LineJoinMode>;
17455
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.LineJoinMode | undefined;
17456
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.LineJoinMode | undefined;
17027
17457
  }
17028
17458
  export type LineJoinMode = LineJoinMode.Round | LineJoinMode.Bevel | LineJoinMode.Miter;
17029
17459
  /**
@@ -17055,6 +17485,8 @@ declare namespace Enum {
17055
17485
  }
17056
17486
  export const Vertical: Vertical;
17057
17487
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ListDisplayMode>;
17488
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ListDisplayMode | undefined;
17489
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ListDisplayMode | undefined;
17058
17490
  }
17059
17491
  export type ListDisplayMode = ListDisplayMode.Horizontal | ListDisplayMode.Vertical;
17060
17492
  /**
@@ -17106,6 +17538,8 @@ declare namespace Enum {
17106
17538
  }
17107
17539
  export const Camera: Camera;
17108
17540
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ListenerLocation>;
17541
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ListenerLocation | undefined;
17542
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ListenerLocation | undefined;
17109
17543
  }
17110
17544
  export type ListenerLocation = ListenerLocation.Default | ListenerLocation.None | ListenerLocation.Character | ListenerLocation.Camera;
17111
17545
  /**
@@ -17159,6 +17593,8 @@ declare namespace Enum {
17159
17593
  }
17160
17594
  export const ObjectCFrame: ObjectCFrame;
17161
17595
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ListenerType>;
17596
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ListenerType | undefined;
17597
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ListenerType | undefined;
17162
17598
  }
17163
17599
  export type ListenerType = ListenerType.Camera | ListenerType.CFrame | ListenerType.ObjectPosition | ListenerType.ObjectCFrame;
17164
17600
  /**
@@ -17202,6 +17638,8 @@ declare namespace Enum {
17202
17638
  }
17203
17639
  export const FailureOperationIllegal: FailureOperationIllegal;
17204
17640
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.LiveEditingAtomicUpdateResponse>;
17641
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.LiveEditingAtomicUpdateResponse | undefined;
17642
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.LiveEditingAtomicUpdateResponse | undefined;
17205
17643
  }
17206
17644
  export type LiveEditingAtomicUpdateResponse = LiveEditingAtomicUpdateResponse.Success | LiveEditingAtomicUpdateResponse.FailureGuidNotFound | LiveEditingAtomicUpdateResponse.FailureHashMismatch | LiveEditingAtomicUpdateResponse.FailureOperationIllegal;
17207
17645
  /**
@@ -17236,6 +17674,8 @@ declare namespace Enum {
17236
17674
  }
17237
17675
  export const Error: Error;
17238
17676
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.LiveEditingBroadcastMessageType>;
17677
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.LiveEditingBroadcastMessageType | undefined;
17678
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.LiveEditingBroadcastMessageType | undefined;
17239
17679
  }
17240
17680
  export type LiveEditingBroadcastMessageType = LiveEditingBroadcastMessageType.Normal | LiveEditingBroadcastMessageType.Warning | LiveEditingBroadcastMessageType.Error;
17241
17681
  /**
@@ -17278,6 +17718,8 @@ declare namespace Enum {
17278
17718
  }
17279
17719
  export const Enabled: Enabled;
17280
17720
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.LoadCharacterLayeredClothing>;
17721
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.LoadCharacterLayeredClothing | undefined;
17722
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.LoadCharacterLayeredClothing | undefined;
17281
17723
  }
17282
17724
  export type LoadCharacterLayeredClothing = LoadCharacterLayeredClothing.Default | LoadCharacterLayeredClothing.Disabled | LoadCharacterLayeredClothing.Enabled;
17283
17725
  /**
@@ -17312,6 +17754,8 @@ declare namespace Enum {
17312
17754
  }
17313
17755
  export const Enabled: Enabled;
17314
17756
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.LoadDynamicHeads>;
17757
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.LoadDynamicHeads | undefined;
17758
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.LoadDynamicHeads | undefined;
17315
17759
  }
17316
17760
  export type LoadDynamicHeads = LoadDynamicHeads.Default | LoadDynamicHeads.Disabled | LoadDynamicHeads.Enabled;
17317
17761
  /**
@@ -17346,6 +17790,8 @@ declare namespace Enum {
17346
17790
  }
17347
17791
  export const ObjectPosition: ObjectPosition;
17348
17792
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.LocationType>;
17793
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.LocationType | undefined;
17794
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.LocationType | undefined;
17349
17795
  }
17350
17796
  export type LocationType = LocationType.Character | LocationType.Camera | LocationType.ObjectPosition;
17351
17797
  /**
@@ -17388,6 +17834,8 @@ declare namespace Enum {
17388
17834
  }
17389
17835
  export const Error: Error;
17390
17836
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.MarketplaceBulkPurchasePromptStatus>;
17837
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.MarketplaceBulkPurchasePromptStatus | undefined;
17838
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.MarketplaceBulkPurchasePromptStatus | undefined;
17391
17839
  }
17392
17840
  export type MarketplaceBulkPurchasePromptStatus = MarketplaceBulkPurchasePromptStatus.Completed | MarketplaceBulkPurchasePromptStatus.Aborted | MarketplaceBulkPurchasePromptStatus.Error;
17393
17841
  /**
@@ -17540,6 +17988,8 @@ declare namespace Enum {
17540
17988
  }
17541
17989
  export const PlaceInvalid: PlaceInvalid;
17542
17990
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.MarketplaceItemPurchaseStatus>;
17991
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.MarketplaceItemPurchaseStatus | undefined;
17992
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.MarketplaceItemPurchaseStatus | undefined;
17543
17993
  }
17544
17994
  export type MarketplaceItemPurchaseStatus = MarketplaceItemPurchaseStatus.Success | MarketplaceItemPurchaseStatus.SystemError | MarketplaceItemPurchaseStatus.AlreadyOwned | MarketplaceItemPurchaseStatus.InsufficientRobux | MarketplaceItemPurchaseStatus.QuantityLimitExceeded | MarketplaceItemPurchaseStatus.QuotaExceeded | MarketplaceItemPurchaseStatus.NotForSale | MarketplaceItemPurchaseStatus.NotAvailableForPurchaser | MarketplaceItemPurchaseStatus.PriceMismatch | MarketplaceItemPurchaseStatus.SoldOut | MarketplaceItemPurchaseStatus.PurchaserIsSeller | MarketplaceItemPurchaseStatus.InsufficientMembership | MarketplaceItemPurchaseStatus.PlaceInvalid;
17545
17995
  /**
@@ -17571,6 +18021,8 @@ declare namespace Enum {
17571
18021
  }
17572
18022
  export const AvatarBundle: AvatarBundle;
17573
18023
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.MarketplaceProductType>;
18024
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.MarketplaceProductType | undefined;
18025
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.MarketplaceProductType | undefined;
17574
18026
  }
17575
18027
  export type MarketplaceProductType = MarketplaceProductType.AvatarAsset | MarketplaceProductType.AvatarBundle;
17576
18028
  /**
@@ -17596,6 +18048,8 @@ declare namespace Enum {
17596
18048
  }
17597
18049
  export const Markdown: Markdown;
17598
18050
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.MarkupKind>;
18051
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.MarkupKind | undefined;
18052
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.MarkupKind | undefined;
17599
18053
  }
17600
18054
  export type MarkupKind = MarkupKind.PlainText | MarkupKind.Markdown;
17601
18055
  /**
@@ -18104,6 +18558,8 @@ declare namespace Enum {
18104
18558
  }
18105
18559
  export const Rubber: Rubber;
18106
18560
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.Material>;
18561
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.Material | undefined;
18562
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.Material | undefined;
18107
18563
  }
18108
18564
  export type Material = Material.Plastic | Material.SmoothPlastic | Material.Neon | Material.Wood | Material.WoodPlanks | Material.Marble | Material.Slate | Material.Concrete | Material.Granite | Material.Brick | Material.Pebble | Material.Cobblestone | Material.Rock | Material.Sandstone | Material.Basalt | Material.CrackedLava | Material.Limestone | Material.Pavement | Material.CorrodedMetal | Material.DiamondPlate | Material.Foil | Material.Metal | Material.Grass | Material.LeafyGrass | Material.Sand | Material.Fabric | Material.Snow | Material.Mud | Material.Ground | Material.Asphalt | Material.Salt | Material.Ice | Material.Glacier | Material.Glass | Material.ForceField | Material.Air | Material.Water | Material.Cardboard | Material.Carpet | Material.CeramicTiles | Material.ClayRoofTiles | Material.RoofShingles | Material.Leather | Material.Plaster | Material.Rubber;
18109
18565
  /**
@@ -18135,6 +18591,8 @@ declare namespace Enum {
18135
18591
  }
18136
18592
  export const Organic: Organic;
18137
18593
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.MaterialPattern>;
18594
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.MaterialPattern | undefined;
18595
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.MaterialPattern | undefined;
18138
18596
  }
18139
18597
  export type MaterialPattern = MaterialPattern.Regular | MaterialPattern.Organic;
18140
18598
  /**
@@ -18199,6 +18657,8 @@ declare namespace Enum {
18199
18657
  }
18200
18658
  export const Premium: Premium;
18201
18659
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.MembershipType>;
18660
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.MembershipType | undefined;
18661
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.MembershipType | undefined;
18202
18662
  }
18203
18663
  export type MembershipType = MembershipType.None | MembershipType.BuildersClub | MembershipType.TurboBuildersClub | MembershipType.OutrageousBuildersClub | MembershipType.Premium;
18204
18664
  /**
@@ -18272,6 +18732,8 @@ declare namespace Enum {
18272
18732
  }
18273
18733
  export const Level04: Level04;
18274
18734
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.MeshPartDetailLevel>;
18735
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.MeshPartDetailLevel | undefined;
18736
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.MeshPartDetailLevel | undefined;
18275
18737
  }
18276
18738
  export type MeshPartDetailLevel = MeshPartDetailLevel.DistanceBased | MeshPartDetailLevel.Level00 | MeshPartDetailLevel.Level01 | MeshPartDetailLevel.Level02 | MeshPartDetailLevel.Level03 | MeshPartDetailLevel.Level04;
18277
18739
  /**
@@ -18314,6 +18776,8 @@ declare namespace Enum {
18314
18776
  }
18315
18777
  export const Enabled: Enabled;
18316
18778
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.MeshPartHeadsAndAccessories>;
18779
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.MeshPartHeadsAndAccessories | undefined;
18780
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.MeshPartHeadsAndAccessories | undefined;
18317
18781
  }
18318
18782
  export type MeshPartHeadsAndAccessories = MeshPartHeadsAndAccessories.Default | MeshPartHeadsAndAccessories.Disabled | MeshPartHeadsAndAccessories.Enabled;
18319
18783
  /**
@@ -18375,6 +18839,8 @@ declare namespace Enum {
18375
18839
  }
18376
18840
  export const Inch: Inch;
18377
18841
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.MeshScaleUnit>;
18842
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.MeshScaleUnit | undefined;
18843
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.MeshScaleUnit | undefined;
18378
18844
  }
18379
18845
  export type MeshScaleUnit = MeshScaleUnit.Stud | MeshScaleUnit.Meter | MeshScaleUnit.CM | MeshScaleUnit.MM | MeshScaleUnit.Foot | MeshScaleUnit.Inch;
18380
18846
  /**
@@ -18526,6 +18992,8 @@ declare namespace Enum {
18526
18992
  }
18527
18993
  export const CornerWedge: CornerWedge;
18528
18994
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.MeshType>;
18995
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.MeshType | undefined;
18996
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.MeshType | undefined;
18529
18997
  }
18530
18998
  export type MeshType = MeshType.Head | MeshType.Torso | MeshType.Wedge | MeshType.Sphere | MeshType.Cylinder | MeshType.FileMesh | MeshType.Brick | MeshType.Prism | MeshType.Pyramid | MeshType.ParallelRamp | MeshType.RightAngleRamp | MeshType.CornerWedge;
18531
18999
  /**
@@ -18579,6 +19047,8 @@ declare namespace Enum {
18579
19047
  }
18580
19048
  export const MessageError: MessageError;
18581
19049
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.MessageType>;
19050
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.MessageType | undefined;
19051
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.MessageType | undefined;
18582
19052
  }
18583
19053
  export type MessageType = MessageType.MessageOutput | MessageType.MessageInfo | MessageType.MessageWarning | MessageType.MessageError;
18584
19054
  /**
@@ -18621,6 +19091,8 @@ declare namespace Enum {
18621
19091
  }
18622
19092
  export const Disabled: Disabled;
18623
19093
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ModelLevelOfDetail>;
19094
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ModelLevelOfDetail | undefined;
19095
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ModelLevelOfDetail | undefined;
18624
19096
  }
18625
19097
  export type ModelLevelOfDetail = ModelLevelOfDetail.Automatic | ModelLevelOfDetail.StreamingMesh | ModelLevelOfDetail.Disabled;
18626
19098
  /**
@@ -18663,6 +19135,8 @@ declare namespace Enum {
18663
19135
  }
18664
19136
  export const Improved: Improved;
18665
19137
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ModelStreamingBehavior>;
19138
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ModelStreamingBehavior | undefined;
19139
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ModelStreamingBehavior | undefined;
18666
19140
  }
18667
19141
  export type ModelStreamingBehavior = ModelStreamingBehavior.Default | ModelStreamingBehavior.Legacy | ModelStreamingBehavior.Improved;
18668
19142
  /**
@@ -18727,6 +19201,8 @@ declare namespace Enum {
18727
19201
  }
18728
19202
  export const Nonatomic: Nonatomic;
18729
19203
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ModelStreamingMode>;
19204
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ModelStreamingMode | undefined;
19205
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ModelStreamingMode | undefined;
18730
19206
  }
18731
19207
  export type ModelStreamingMode = ModelStreamingMode.Default | ModelStreamingMode.Atomic | ModelStreamingMode.Persistent | ModelStreamingMode.PersistentPerPlayer | ModelStreamingMode.Nonatomic;
18732
19208
  /**
@@ -18779,6 +19255,8 @@ declare namespace Enum {
18779
19255
  }
18780
19256
  export const Invalid: Invalid;
18781
19257
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ModerationStatus>;
19258
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ModerationStatus | undefined;
19259
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ModerationStatus | undefined;
18782
19260
  }
18783
19261
  export type ModerationStatus = ModerationStatus.ReviewedApproved | ModerationStatus.ReviewedRejected | ModerationStatus.NotReviewed | ModerationStatus.NotApplicable | ModerationStatus.Invalid;
18784
19262
  /**
@@ -18822,6 +19300,8 @@ declare namespace Enum {
18822
19300
  }
18823
19301
  export const Meta: Meta;
18824
19302
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ModifierKey>;
19303
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ModifierKey | undefined;
19304
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ModifierKey | undefined;
18825
19305
  }
18826
19306
  export type ModifierKey = ModifierKey.Shift | ModifierKey.Ctrl | ModifierKey.Alt | ModifierKey.Meta;
18827
19307
  /**
@@ -18864,6 +19344,8 @@ declare namespace Enum {
18864
19344
  }
18865
19345
  export const LockCurrentPosition: LockCurrentPosition;
18866
19346
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.MouseBehavior>;
19347
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.MouseBehavior | undefined;
19348
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.MouseBehavior | undefined;
18867
19349
  }
18868
19350
  export type MouseBehavior = MouseBehavior.Default | MouseBehavior.LockCenter | MouseBehavior.LockCurrentPosition;
18869
19351
  /**
@@ -18928,6 +19410,8 @@ declare namespace Enum {
18928
19410
  }
18929
19411
  export const AirFree: AirFree;
18930
19412
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.MoveState>;
19413
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.MoveState | undefined;
19414
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.MoveState | undefined;
18931
19415
  }
18932
19416
  export type MoveState = MoveState.Stopped | MoveState.Coasting | MoveState.Pushing | MoveState.Stopping | MoveState.AirFree;
18933
19417
  /**
@@ -18970,6 +19454,8 @@ declare namespace Enum {
18970
19454
  }
18971
19455
  export const Enabled: Enabled;
18972
19456
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.MoverConstraintRootBehaviorMode>;
19457
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.MoverConstraintRootBehaviorMode | undefined;
19458
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.MoverConstraintRootBehaviorMode | undefined;
18973
19459
  }
18974
19460
  export type MoverConstraintRootBehaviorMode = MoverConstraintRootBehaviorMode.Default | MoverConstraintRootBehaviorMode.Disabled | MoverConstraintRootBehaviorMode.Enabled;
18975
19461
  /**
@@ -18995,6 +19481,8 @@ declare namespace Enum {
18995
19481
  }
18996
19482
  export const Muted: Muted;
18997
19483
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.MuteState>;
19484
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.MuteState | undefined;
19485
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.MuteState | undefined;
18998
19486
  }
18999
19487
  export type MuteState = MuteState.Unmuted | MuteState.Muted;
19000
19488
  /**
@@ -19037,6 +19525,8 @@ declare namespace Enum {
19037
19525
  }
19038
19526
  export const OccludeAll: OccludeAll;
19039
19527
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.NameOcclusion>;
19528
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.NameOcclusion | undefined;
19529
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.NameOcclusion | undefined;
19040
19530
  }
19041
19531
  export type NameOcclusion = NameOcclusion.NoOcclusion | NameOcclusion.EnemyOcclusion | NameOcclusion.OccludeAll;
19042
19532
  /**
@@ -19079,6 +19569,8 @@ declare namespace Enum {
19079
19569
  }
19080
19570
  export const OnContact: OnContact;
19081
19571
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.NetworkOwnership>;
19572
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.NetworkOwnership | undefined;
19573
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.NetworkOwnership | undefined;
19082
19574
  }
19083
19575
  export type NetworkOwnership = NetworkOwnership.Automatic | NetworkOwnership.Manual | NetworkOwnership.OnContact;
19084
19576
  /**
@@ -19113,6 +19605,8 @@ declare namespace Enum {
19113
19605
  }
19114
19606
  export const Disconnected: Disconnected;
19115
19607
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.NetworkStatus>;
19608
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.NetworkStatus | undefined;
19609
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.NetworkStatus | undefined;
19116
19610
  }
19117
19611
  export type NetworkStatus = NetworkStatus.Unknown | NetworkStatus.Connected | NetworkStatus.Disconnected;
19118
19612
  /**
@@ -19129,6 +19623,8 @@ declare namespace Enum {
19129
19623
  }
19130
19624
  export const SimplexGabor: SimplexGabor;
19131
19625
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.NoiseType>;
19626
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.NoiseType | undefined;
19627
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.NoiseType | undefined;
19132
19628
  }
19133
19629
  export type NoiseType = NoiseType.SimplexGabor;
19134
19630
  /**
@@ -19204,6 +19700,8 @@ declare namespace Enum {
19204
19700
  }
19205
19701
  export const Front: Front;
19206
19702
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.NormalId>;
19703
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.NormalId | undefined;
19704
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.NormalId | undefined;
19207
19705
  }
19208
19706
  export type NormalId = NormalId.Right | NormalId.Top | NormalId.Back | NormalId.Left | NormalId.Bottom | NormalId.Front;
19209
19707
  /**
@@ -19229,6 +19727,8 @@ declare namespace Enum {
19229
19727
  }
19230
19728
  export const Secondary: Secondary;
19231
19729
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.NotificationButtonType>;
19730
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.NotificationButtonType | undefined;
19731
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.NotificationButtonType | undefined;
19232
19732
  }
19233
19733
  export type NotificationButtonType = NotificationButtonType.Primary | NotificationButtonType.Secondary;
19234
19734
  /**
@@ -19281,6 +19781,8 @@ declare namespace Enum {
19281
19781
  }
19282
19782
  export const Primitive: Primitive;
19283
19783
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.OperationType>;
19784
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.OperationType | undefined;
19785
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.OperationType | undefined;
19284
19786
  }
19285
19787
  export type OperationType = OperationType.Null | OperationType.Union | OperationType.Subtraction | OperationType.Intersection | OperationType.Primitive;
19286
19788
  /**
@@ -19312,6 +19814,8 @@ declare namespace Enum {
19312
19814
  }
19313
19815
  export const TwoAttachment: TwoAttachment;
19314
19816
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.OrientationAlignmentMode>;
19817
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.OrientationAlignmentMode | undefined;
19818
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.OrientationAlignmentMode | undefined;
19315
19819
  }
19316
19820
  export type OrientationAlignmentMode = OrientationAlignmentMode.OneAttachment | OrientationAlignmentMode.TwoAttachment;
19317
19821
  /**
@@ -19346,6 +19850,8 @@ declare namespace Enum {
19346
19850
  }
19347
19851
  export const Purchased: Purchased;
19348
19852
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.OutfitSource>;
19853
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.OutfitSource | undefined;
19854
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.OutfitSource | undefined;
19349
19855
  }
19350
19856
  export type OutfitSource = OutfitSource.All | OutfitSource.Created | OutfitSource.Purchased;
19351
19857
  /**
@@ -19380,6 +19886,8 @@ declare namespace Enum {
19380
19886
  }
19381
19887
  export const DynamicHead: DynamicHead;
19382
19888
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.OutfitType>;
19889
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.OutfitType | undefined;
19890
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.OutfitType | undefined;
19383
19891
  }
19384
19892
  export type OutfitType = OutfitType.All | OutfitType.Avatar | OutfitType.DynamicHead;
19385
19893
  /**
@@ -19411,6 +19919,8 @@ declare namespace Enum {
19411
19919
  }
19412
19920
  export const Vertical: Vertical;
19413
19921
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.OutputLayoutMode>;
19922
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.OutputLayoutMode | undefined;
19923
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.OutputLayoutMode | undefined;
19414
19924
  }
19415
19925
  export type OutputLayoutMode = OutputLayoutMode.Horizontal | OutputLayoutMode.Vertical;
19416
19926
  /**
@@ -19453,6 +19963,8 @@ declare namespace Enum {
19453
19963
  }
19454
19964
  export const ForceHide: ForceHide;
19455
19965
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.OverrideMouseIconBehavior>;
19966
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.OverrideMouseIconBehavior | undefined;
19967
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.OverrideMouseIconBehavior | undefined;
19456
19968
  }
19457
19969
  export type OverrideMouseIconBehavior = OverrideMouseIconBehavior.None | OverrideMouseIconBehavior.ForceShow | OverrideMouseIconBehavior.ForceHide;
19458
19970
  /**
@@ -19528,6 +20040,8 @@ declare namespace Enum {
19528
20040
  }
19529
20041
  export const Own: Own;
19530
20042
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PackagePermission>;
20043
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PackagePermission | undefined;
20044
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PackagePermission | undefined;
19531
20045
  }
19532
20046
  export type PackagePermission = PackagePermission.None | PackagePermission.NoAccess | PackagePermission.Revoked | PackagePermission.UseView | PackagePermission.Edit | PackagePermission.Own;
19533
20047
  /**
@@ -19592,6 +20106,8 @@ declare namespace Enum {
19592
20106
  }
19593
20107
  export const CornerWedge: CornerWedge;
19594
20108
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PartType>;
20109
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PartType | undefined;
20110
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PartType | undefined;
19595
20111
  }
19596
20112
  export type PartType = PartType.Ball | PartType.Block | PartType.Cylinder | PartType.Wedge | PartType.CornerWedge;
19597
20113
  /**
@@ -19635,6 +20151,8 @@ declare namespace Enum {
19635
20151
  }
19636
20152
  export const Disc: Disc;
19637
20153
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ParticleEmitterShape>;
20154
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ParticleEmitterShape | undefined;
20155
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ParticleEmitterShape | undefined;
19638
20156
  }
19639
20157
  export type ParticleEmitterShape = ParticleEmitterShape.Box | ParticleEmitterShape.Sphere | ParticleEmitterShape.Cylinder | ParticleEmitterShape.Disc;
19640
20158
  /**
@@ -19669,6 +20187,8 @@ declare namespace Enum {
19669
20187
  }
19670
20188
  export const InAndOut: InAndOut;
19671
20189
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ParticleEmitterShapeInOut>;
20190
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ParticleEmitterShapeInOut | undefined;
20191
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ParticleEmitterShapeInOut | undefined;
19672
20192
  }
19673
20193
  export type ParticleEmitterShapeInOut = ParticleEmitterShapeInOut.Outward | ParticleEmitterShapeInOut.Inward | ParticleEmitterShapeInOut.InAndOut;
19674
20194
  /**
@@ -19694,6 +20214,8 @@ declare namespace Enum {
19694
20214
  }
19695
20215
  export const Surface: Surface;
19696
20216
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ParticleEmitterShapeStyle>;
20217
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ParticleEmitterShapeStyle | undefined;
20218
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ParticleEmitterShapeStyle | undefined;
19697
20219
  }
19698
20220
  export type ParticleEmitterShapeStyle = ParticleEmitterShapeStyle.Volume | ParticleEmitterShapeStyle.Surface;
19699
20221
  /**
@@ -19747,6 +20269,8 @@ declare namespace Enum {
19747
20269
  }
19748
20270
  export const Grid8x8: Grid8x8;
19749
20271
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ParticleFlipbookLayout>;
20272
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ParticleFlipbookLayout | undefined;
20273
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ParticleFlipbookLayout | undefined;
19750
20274
  }
19751
20275
  export type ParticleFlipbookLayout = ParticleFlipbookLayout.None | ParticleFlipbookLayout.Grid2x2 | ParticleFlipbookLayout.Grid4x4 | ParticleFlipbookLayout.Grid8x8;
19752
20276
  /**
@@ -19800,6 +20324,8 @@ declare namespace Enum {
19800
20324
  }
19801
20325
  export const Random: Random;
19802
20326
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ParticleFlipbookMode>;
20327
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ParticleFlipbookMode | undefined;
20328
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ParticleFlipbookMode | undefined;
19803
20329
  }
19804
20330
  export type ParticleFlipbookMode = ParticleFlipbookMode.Loop | ParticleFlipbookMode.OneShot | ParticleFlipbookMode.PingPong | ParticleFlipbookMode.Random;
19805
20331
  /**
@@ -19834,6 +20360,8 @@ declare namespace Enum {
19834
20360
  }
19835
20361
  export const Unknown: Unknown;
19836
20362
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ParticleFlipbookTextureCompatible>;
20363
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ParticleFlipbookTextureCompatible | undefined;
20364
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ParticleFlipbookTextureCompatible | undefined;
19837
20365
  }
19838
20366
  export type ParticleFlipbookTextureCompatible = ParticleFlipbookTextureCompatible.NotCompatible | ParticleFlipbookTextureCompatible.Compatible | ParticleFlipbookTextureCompatible.Unknown;
19839
20367
  /**
@@ -19877,6 +20405,8 @@ declare namespace Enum {
19877
20405
  }
19878
20406
  export const VelocityPerpendicular: VelocityPerpendicular;
19879
20407
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ParticleOrientation>;
20408
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ParticleOrientation | undefined;
20409
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ParticleOrientation | undefined;
19880
20410
  }
19881
20411
  export type ParticleOrientation = ParticleOrientation.FacingCamera | ParticleOrientation.FacingCameraWorldUp | ParticleOrientation.VelocityParallel | ParticleOrientation.VelocityPerpendicular;
19882
20412
  /**
@@ -19960,6 +20490,8 @@ declare namespace Enum {
19960
20490
  }
19961
20491
  export const FailFinishNotEmpty: FailFinishNotEmpty;
19962
20492
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PathStatus>;
20493
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PathStatus | undefined;
20494
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PathStatus | undefined;
19963
20495
  }
19964
20496
  export type PathStatus = PathStatus.Success | PathStatus.NoPath | PathStatus.ClosestNoPath | PathStatus.ClosestOutOfRange | PathStatus.FailStartNotEmpty | PathStatus.FailFinishNotEmpty;
19965
20497
  /**
@@ -20000,6 +20532,8 @@ declare namespace Enum {
20000
20532
  }
20001
20533
  export const Custom: Custom;
20002
20534
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PathWaypointAction>;
20535
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PathWaypointAction | undefined;
20536
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PathWaypointAction | undefined;
20003
20537
  }
20004
20538
  export type PathWaypointAction = PathWaypointAction.Walk | PathWaypointAction.Jump | PathWaypointAction.Custom;
20005
20539
  /**
@@ -20034,6 +20568,8 @@ declare namespace Enum {
20034
20568
  }
20035
20569
  export const Enabled: Enabled;
20036
20570
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PathfindingUseImprovedSearch>;
20571
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PathfindingUseImprovedSearch | undefined;
20572
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PathfindingUseImprovedSearch | undefined;
20037
20573
  }
20038
20574
  export type PathfindingUseImprovedSearch = PathfindingUseImprovedSearch.Default | PathfindingUseImprovedSearch.Disabled | PathfindingUseImprovedSearch.Enabled;
20039
20575
  /**
@@ -20098,6 +20634,8 @@ declare namespace Enum {
20098
20634
  }
20099
20635
  export const Roblox: Roblox;
20100
20636
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PermissionLevelShown>;
20637
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PermissionLevelShown | undefined;
20638
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PermissionLevelShown | undefined;
20101
20639
  }
20102
20640
  export type PermissionLevelShown = PermissionLevelShown.Game | PermissionLevelShown.RobloxGame | PermissionLevelShown.RobloxScript | PermissionLevelShown.Studio | PermissionLevelShown.Roblox;
20103
20641
  /**
@@ -20132,6 +20670,8 @@ declare namespace Enum {
20132
20670
  }
20133
20671
  export const Fixed60Hz: Fixed60Hz;
20134
20672
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PhysicsSimulationRate>;
20673
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PhysicsSimulationRate | undefined;
20674
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PhysicsSimulationRate | undefined;
20135
20675
  }
20136
20676
  export type PhysicsSimulationRate = PhysicsSimulationRate.Fixed240Hz | PhysicsSimulationRate.Fixed120Hz | PhysicsSimulationRate.Fixed60Hz;
20137
20677
  /**
@@ -20172,6 +20712,8 @@ declare namespace Enum {
20172
20712
  }
20173
20713
  export const Adaptive: Adaptive;
20174
20714
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PhysicsSteppingMethod>;
20715
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PhysicsSteppingMethod | undefined;
20716
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PhysicsSteppingMethod | undefined;
20175
20717
  }
20176
20718
  export type PhysicsSteppingMethod = PhysicsSteppingMethod.Default | PhysicsSteppingMethod.Fixed | PhysicsSteppingMethod.Adaptive;
20177
20719
  /**
@@ -20419,6 +20961,8 @@ declare namespace Enum {
20419
20961
  }
20420
20962
  export const None: None;
20421
20963
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.Platform>;
20964
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.Platform | undefined;
20965
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.Platform | undefined;
20422
20966
  }
20423
20967
  export type Platform = Platform.Windows | Platform.OSX | Platform.IOS | Platform.Android | Platform.XBoxOne | Platform.PS4 | Platform.PS3 | Platform.XBox360 | Platform.WiiU | Platform.NX | Platform.Ouya | Platform.AndroidTV | Platform.Chromecast | Platform.Linux | Platform.SteamOS | Platform.WebOS | Platform.DOS | Platform.BeOS | Platform.UWP | Platform.PS5 | Platform.MetaOS | Platform.None;
20424
20968
  /**
@@ -20494,6 +21038,8 @@ declare namespace Enum {
20494
21038
  }
20495
21039
  export const Cancelled: Cancelled;
20496
21040
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PlaybackState>;
21041
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PlaybackState | undefined;
21042
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PlaybackState | undefined;
20497
21043
  }
20498
21044
  export type PlaybackState = PlaybackState.Begin | PlaybackState.Delayed | PlaybackState.Playing | PlaybackState.Paused | PlaybackState.Completed | PlaybackState.Cancelled;
20499
21045
  /**
@@ -20558,6 +21104,8 @@ declare namespace Enum {
20558
21104
  }
20559
21105
  export const CharacterJump: CharacterJump;
20560
21106
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PlayerActions>;
21107
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PlayerActions | undefined;
21108
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PlayerActions | undefined;
20561
21109
  }
20562
21110
  export type PlayerActions = PlayerActions.CharacterForward | PlayerActions.CharacterBackward | PlayerActions.CharacterLeft | PlayerActions.CharacterRight | PlayerActions.CharacterJump;
20563
21111
  /**
@@ -20592,6 +21140,8 @@ declare namespace Enum {
20592
21140
  }
20593
21141
  export const Enabled: Enabled;
20594
21142
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PlayerCharacterDestroyBehavior>;
21143
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PlayerCharacterDestroyBehavior | undefined;
21144
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PlayerCharacterDestroyBehavior | undefined;
20595
21145
  }
20596
21146
  export type PlayerCharacterDestroyBehavior = PlayerCharacterDestroyBehavior.Default | PlayerCharacterDestroyBehavior.Disabled | PlayerCharacterDestroyBehavior.Enabled;
20597
21147
  /**
@@ -20634,6 +21184,8 @@ declare namespace Enum {
20634
21184
  }
20635
21185
  export const Whisper: Whisper;
20636
21186
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PlayerChatType>;
21187
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PlayerChatType | undefined;
21188
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PlayerChatType | undefined;
20637
21189
  }
20638
21190
  export type PlayerChatType = PlayerChatType.All | PlayerChatType.Team | PlayerChatType.Whisper;
20639
21191
  /**
@@ -20676,6 +21228,8 @@ declare namespace Enum {
20676
21228
  }
20677
21229
  export const InOut: InOut;
20678
21230
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PoseEasingDirection>;
21231
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PoseEasingDirection | undefined;
21232
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PoseEasingDirection | undefined;
20679
21233
  }
20680
21234
  export type PoseEasingDirection = PoseEasingDirection.In | PoseEasingDirection.Out | PoseEasingDirection.InOut;
20681
21235
  /**
@@ -20749,6 +21303,8 @@ declare namespace Enum {
20749
21303
  }
20750
21304
  export const CubicV2: CubicV2;
20751
21305
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PoseEasingStyle>;
21306
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PoseEasingStyle | undefined;
21307
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PoseEasingStyle | undefined;
20752
21308
  }
20753
21309
  export type PoseEasingStyle = PoseEasingStyle.Linear | PoseEasingStyle.Constant | PoseEasingStyle.Elastic | PoseEasingStyle.Cubic | PoseEasingStyle.Bounce | PoseEasingStyle.CubicV2;
20754
21310
  /**
@@ -20780,6 +21336,8 @@ declare namespace Enum {
20780
21336
  }
20781
21337
  export const TwoAttachment: TwoAttachment;
20782
21338
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PositionAlignmentMode>;
21339
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PositionAlignmentMode | undefined;
21340
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PositionAlignmentMode | undefined;
20783
21341
  }
20784
21342
  export type PositionAlignmentMode = PositionAlignmentMode.OneAttachment | PositionAlignmentMode.TwoAttachment;
20785
21343
  /**
@@ -20823,6 +21381,8 @@ declare namespace Enum {
20823
21381
  }
20824
21382
  export const Largest: Largest;
20825
21383
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PreferredTextSize>;
21384
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PreferredTextSize | undefined;
21385
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PreferredTextSize | undefined;
20826
21386
  }
20827
21387
  export type PreferredTextSize = PreferredTextSize.Medium | PreferredTextSize.Large | PreferredTextSize.Larger | PreferredTextSize.Largest;
20828
21388
  /**
@@ -20857,6 +21417,8 @@ declare namespace Enum {
20857
21417
  }
20858
21418
  export const Disabled: Disabled;
20859
21419
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PrimalPhysicsSolver>;
21420
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PrimalPhysicsSolver | undefined;
21421
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PrimalPhysicsSolver | undefined;
20860
21422
  }
20861
21423
  export type PrimalPhysicsSolver = PrimalPhysicsSolver.Default | PrimalPhysicsSolver.Experimental | PrimalPhysicsSolver.Disabled;
20862
21424
  /**
@@ -20918,6 +21480,8 @@ declare namespace Enum {
20918
21480
  }
20919
21481
  export const CornerWedge: CornerWedge;
20920
21482
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PrimitiveType>;
21483
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PrimitiveType | undefined;
21484
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PrimitiveType | undefined;
20921
21485
  }
20922
21486
  export type PrimitiveType = PrimitiveType.Null | PrimitiveType.Ball | PrimitiveType.Cylinder | PrimitiveType.Block | PrimitiveType.Wedge | PrimitiveType.CornerWedge;
20923
21487
  /**
@@ -20972,6 +21536,8 @@ declare namespace Enum {
20972
21536
  }
20973
21537
  export const Banned: Banned;
20974
21538
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PrivilegeType>;
21539
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PrivilegeType | undefined;
21540
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PrivilegeType | undefined;
20975
21541
  }
20976
21542
  export type PrivilegeType = PrivilegeType.Owner | PrivilegeType.Admin | PrivilegeType.Member | PrivilegeType.Visitor | PrivilegeType.Banned;
20977
21543
  /**
@@ -21012,6 +21578,8 @@ declare namespace Enum {
21012
21578
  }
21013
21579
  export const AllGames: AllGames;
21014
21580
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ProductLocationRestriction>;
21581
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ProductLocationRestriction | undefined;
21582
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ProductLocationRestriction | undefined;
21015
21583
  }
21016
21584
  export type ProductLocationRestriction = ProductLocationRestriction.AvatarShop | ProductLocationRestriction.AllowedGames | ProductLocationRestriction.AllGames;
21017
21585
  /**
@@ -21055,6 +21623,8 @@ declare namespace Enum {
21055
21623
  }
21056
21624
  export const CommerceProduct: CommerceProduct;
21057
21625
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ProductPurchaseChannel>;
21626
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ProductPurchaseChannel | undefined;
21627
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ProductPurchaseChannel | undefined;
21058
21628
  }
21059
21629
  export type ProductPurchaseChannel = ProductPurchaseChannel.InExperience | ProductPurchaseChannel.ExperienceDetailsPage | ProductPurchaseChannel.AdReward | ProductPurchaseChannel.CommerceProduct;
21060
21630
  /**
@@ -21086,6 +21656,8 @@ declare namespace Enum {
21086
21656
  }
21087
21657
  export const PurchaseGranted: PurchaseGranted;
21088
21658
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ProductPurchaseDecision>;
21659
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ProductPurchaseDecision | undefined;
21660
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ProductPurchaseDecision | undefined;
21089
21661
  }
21090
21662
  export type ProductPurchaseDecision = ProductPurchaseDecision.NotProcessedYet | ProductPurchaseDecision.PurchaseGranted;
21091
21663
  /**
@@ -21147,6 +21719,8 @@ declare namespace Enum {
21147
21719
  }
21148
21720
  export const UnknownFailure: UnknownFailure;
21149
21721
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PromptCreateAssetResult>;
21722
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PromptCreateAssetResult | undefined;
21723
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PromptCreateAssetResult | undefined;
21150
21724
  }
21151
21725
  export type PromptCreateAssetResult = PromptCreateAssetResult.Success | PromptCreateAssetResult.PermissionDenied | PromptCreateAssetResult.Timeout | PromptCreateAssetResult.UploadFailed | PromptCreateAssetResult.NoUserInput | PromptCreateAssetResult.UnknownFailure;
21152
21726
  /**
@@ -21262,6 +21836,8 @@ declare namespace Enum {
21262
21836
  }
21263
21837
  export const TokenInvalid: TokenInvalid;
21264
21838
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PromptCreateAvatarResult>;
21839
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PromptCreateAvatarResult | undefined;
21840
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PromptCreateAvatarResult | undefined;
21265
21841
  }
21266
21842
  export type PromptCreateAvatarResult = PromptCreateAvatarResult.Success | PromptCreateAvatarResult.PermissionDenied | PromptCreateAvatarResult.Timeout | PromptCreateAvatarResult.UploadFailed | PromptCreateAvatarResult.NoUserInput | PromptCreateAvatarResult.InvalidHumanoidDescription | PromptCreateAvatarResult.UGCValidationFailed | PromptCreateAvatarResult.ModeratedName | PromptCreateAvatarResult.MaxOutfits | PromptCreateAvatarResult.PurchaseFailure | PromptCreateAvatarResult.UnknownFailure | PromptCreateAvatarResult.TokenInvalid;
21267
21843
  /**
@@ -21323,6 +21899,8 @@ declare namespace Enum {
21323
21899
  }
21324
21900
  export const UnknownFailure: UnknownFailure;
21325
21901
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PromptPublishAssetResult>;
21902
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PromptPublishAssetResult | undefined;
21903
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PromptPublishAssetResult | undefined;
21326
21904
  }
21327
21905
  export type PromptPublishAssetResult = PromptPublishAssetResult.Success | PromptPublishAssetResult.PermissionDenied | PromptPublishAssetResult.Timeout | PromptPublishAssetResult.UploadFailed | PromptPublishAssetResult.NoUserInput | PromptPublishAssetResult.UnknownFailure;
21328
21906
  /**
@@ -21357,6 +21935,8 @@ declare namespace Enum {
21357
21935
  }
21358
21936
  export const Error: Error;
21359
21937
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PropertyStatus>;
21938
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PropertyStatus | undefined;
21939
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PropertyStatus | undefined;
21360
21940
  }
21361
21941
  export type PropertyStatus = PropertyStatus.Ok | PropertyStatus.Warning | PropertyStatus.Error;
21362
21942
  /**
@@ -21397,6 +21977,8 @@ declare namespace Enum {
21397
21977
  }
21398
21978
  export const AlwaysShow: AlwaysShow;
21399
21979
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ProximityPromptExclusivity>;
21980
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ProximityPromptExclusivity | undefined;
21981
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ProximityPromptExclusivity | undefined;
21400
21982
  }
21401
21983
  export type ProximityPromptExclusivity = ProximityPromptExclusivity.OnePerButton | ProximityPromptExclusivity.OneGlobally | ProximityPromptExclusivity.AlwaysShow;
21402
21984
  /**
@@ -21431,6 +22013,8 @@ declare namespace Enum {
21431
22013
  }
21432
22014
  export const Touch: Touch;
21433
22015
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ProximityPromptInputType>;
22016
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ProximityPromptInputType | undefined;
22017
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ProximityPromptInputType | undefined;
21434
22018
  }
21435
22019
  export type ProximityPromptInputType = ProximityPromptInputType.Keyboard | ProximityPromptInputType.Gamepad | ProximityPromptInputType.Touch;
21436
22020
  /**
@@ -21460,6 +22044,8 @@ declare namespace Enum {
21460
22044
  }
21461
22045
  export const Custom: Custom;
21462
22046
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ProximityPromptStyle>;
22047
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ProximityPromptStyle | undefined;
22048
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ProximityPromptStyle | undefined;
21463
22049
  }
21464
22050
  export type ProximityPromptStyle = ProximityPromptStyle.Default | ProximityPromptStyle.Custom;
21465
22051
  /**
@@ -21711,6 +22297,8 @@ declare namespace Enum {
21711
22297
  }
21712
22298
  export const Level21: Level21;
21713
22299
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.QualityLevel>;
22300
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.QualityLevel | undefined;
22301
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.QualityLevel | undefined;
21714
22302
  }
21715
22303
  export type QualityLevel = QualityLevel.Automatic | QualityLevel.Level01 | QualityLevel.Level02 | QualityLevel.Level03 | QualityLevel.Level04 | QualityLevel.Level05 | QualityLevel.Level06 | QualityLevel.Level07 | QualityLevel.Level08 | QualityLevel.Level09 | QualityLevel.Level10 | QualityLevel.Level11 | QualityLevel.Level12 | QualityLevel.Level13 | QualityLevel.Level14 | QualityLevel.Level15 | QualityLevel.Level16 | QualityLevel.Level17 | QualityLevel.Level18 | QualityLevel.Level19 | QualityLevel.Level20 | QualityLevel.Level21;
21716
22304
  /**
@@ -21742,6 +22330,8 @@ declare namespace Enum {
21742
22330
  }
21743
22331
  export const InnerBox: InnerBox;
21744
22332
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.R15CollisionType>;
22333
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.R15CollisionType | undefined;
22334
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.R15CollisionType | undefined;
21745
22335
  }
21746
22336
  export type R15CollisionType = R15CollisionType.OuterBox | R15CollisionType.InnerBox;
21747
22337
  /**
@@ -21781,6 +22371,8 @@ declare namespace Enum {
21781
22371
  */
21782
22372
  export const Whitelist: Include;
21783
22373
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RaycastFilterType>;
22374
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RaycastFilterType | undefined;
22375
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RaycastFilterType | undefined;
21784
22376
  }
21785
22377
  export type RaycastFilterType = RaycastFilterType.Exclude | RaycastFilterType.Include;
21786
22378
  /**
@@ -21815,6 +22407,8 @@ declare namespace Enum {
21815
22407
  }
21816
22408
  export const Enabled: Enabled;
21817
22409
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RejectCharacterDeletions>;
22410
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RejectCharacterDeletions | undefined;
22411
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RejectCharacterDeletions | undefined;
21818
22412
  }
21819
22413
  export type RejectCharacterDeletions = RejectCharacterDeletions.Default | RejectCharacterDeletions.Disabled | RejectCharacterDeletions.Enabled;
21820
22414
  /**
@@ -21857,6 +22451,8 @@ declare namespace Enum {
21857
22451
  }
21858
22452
  export const Performance: Performance;
21859
22453
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RenderFidelity>;
22454
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RenderFidelity | undefined;
22455
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RenderFidelity | undefined;
21860
22456
  }
21861
22457
  export type RenderFidelity = RenderFidelity.Automatic | RenderFidelity.Precise | RenderFidelity.Performance;
21862
22458
  /**
@@ -21921,6 +22517,8 @@ declare namespace Enum {
21921
22517
  }
21922
22518
  export const Last: Last;
21923
22519
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RenderPriority>;
22520
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RenderPriority | undefined;
22521
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RenderPriority | undefined;
21924
22522
  }
21925
22523
  export type RenderPriority = RenderPriority.First | RenderPriority.Input | RenderPriority.Camera | RenderPriority.Character | RenderPriority.Last;
21926
22524
  /**
@@ -21955,6 +22553,8 @@ declare namespace Enum {
21955
22553
  }
21956
22554
  export const Enabled: Enabled;
21957
22555
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RenderingCacheOptimizationMode>;
22556
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RenderingCacheOptimizationMode | undefined;
22557
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RenderingCacheOptimizationMode | undefined;
21958
22558
  }
21959
22559
  export type RenderingCacheOptimizationMode = RenderingCacheOptimizationMode.Default | RenderingCacheOptimizationMode.Disabled | RenderingCacheOptimizationMode.Enabled;
21960
22560
  /**
@@ -21980,6 +22580,8 @@ declare namespace Enum {
21980
22580
  }
21981
22581
  export const diff: diff;
21982
22582
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RenderingTestComparisonMethod>;
22583
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RenderingTestComparisonMethod | undefined;
22584
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RenderingTestComparisonMethod | undefined;
21983
22585
  }
21984
22586
  export type RenderingTestComparisonMethod = RenderingTestComparisonMethod.psnr | RenderingTestComparisonMethod.diff;
21985
22587
  /**
@@ -22014,6 +22616,8 @@ declare namespace Enum {
22014
22616
  }
22015
22617
  export const Enabled: Enabled;
22016
22618
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ReplicateInstanceDestroySetting>;
22619
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ReplicateInstanceDestroySetting | undefined;
22620
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ReplicateInstanceDestroySetting | undefined;
22017
22621
  }
22018
22622
  export type ReplicateInstanceDestroySetting = ReplicateInstanceDestroySetting.Default | ReplicateInstanceDestroySetting.Disabled | ReplicateInstanceDestroySetting.Enabled;
22019
22623
  /**
@@ -22045,6 +22649,8 @@ declare namespace Enum {
22045
22649
  }
22046
22650
  export const Pixelated: Pixelated;
22047
22651
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ResamplerMode>;
22652
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ResamplerMode | undefined;
22653
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ResamplerMode | undefined;
22048
22654
  }
22049
22655
  export type ResamplerMode = ResamplerMode.Default | ResamplerMode.Pixelated;
22050
22656
  /**
@@ -22088,6 +22694,8 @@ declare namespace Enum {
22088
22694
  }
22089
22695
  export const Active: Active;
22090
22696
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ReservedHighlightId>;
22697
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ReservedHighlightId | undefined;
22698
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ReservedHighlightId | undefined;
22091
22699
  }
22092
22700
  export type ReservedHighlightId = ReservedHighlightId.Standard | ReservedHighlightId.Selection | ReservedHighlightId.Hover | ReservedHighlightId.Active;
22093
22701
  /**
@@ -22122,6 +22730,8 @@ declare namespace Enum {
22122
22730
  }
22123
22731
  export const Custom: Custom;
22124
22732
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RestPose>;
22733
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RestPose | undefined;
22734
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RestPose | undefined;
22125
22735
  }
22126
22736
  export type RestPose = RestPose.Default | RestPose.RotationsReset | RestPose.Custom;
22127
22737
  /**
@@ -22183,6 +22793,8 @@ declare namespace Enum {
22183
22793
  }
22184
22794
  export const Send: Send;
22185
22795
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ReturnKeyType>;
22796
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ReturnKeyType | undefined;
22797
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ReturnKeyType | undefined;
22186
22798
  }
22187
22799
  export type ReturnKeyType = ReturnKeyType.Default | ReturnKeyType.Done | ReturnKeyType.Go | ReturnKeyType.Next | ReturnKeyType.Search | ReturnKeyType.Send;
22188
22800
  /**
@@ -22456,6 +23068,8 @@ declare namespace Enum {
22456
23068
  }
22457
23069
  export const UnderWater: UnderWater;
22458
23070
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ReverbType>;
23071
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ReverbType | undefined;
23072
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ReverbType | undefined;
22459
23073
  }
22460
23074
  export type ReverbType = ReverbType.NoReverb | ReverbType.GenericReverb | ReverbType.PaddedCell | ReverbType.Room | ReverbType.Bathroom | ReverbType.LivingRoom | ReverbType.StoneRoom | ReverbType.Auditorium | ReverbType.ConcertHall | ReverbType.Cave | ReverbType.Arena | ReverbType.Hangar | ReverbType.CarpettedHallway | ReverbType.Hallway | ReverbType.StoneCorridor | ReverbType.Alley | ReverbType.Forest | ReverbType.City | ReverbType.Mountains | ReverbType.Quarry | ReverbType.Plain | ReverbType.ParkingLot | ReverbType.SewerPipe | ReverbType.UnderWater;
22461
23075
  /**
@@ -22564,6 +23178,8 @@ declare namespace Enum {
22564
23178
  }
22565
23179
  export const PivotEditor: PivotEditor;
22566
23180
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RibbonTool>;
23181
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RibbonTool | undefined;
23182
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RibbonTool | undefined;
22567
23183
  }
22568
23184
  export type RibbonTool = RibbonTool.Select | RibbonTool.Scale | RibbonTool.Rotate | RibbonTool.Move | RibbonTool.Transform | RibbonTool.ColorPicker | RibbonTool.MaterialPicker | RibbonTool.Group | RibbonTool.Ungroup | RibbonTool.None | RibbonTool.PivotEditor;
22569
23185
  /**
@@ -22598,6 +23214,8 @@ declare namespace Enum {
22598
23214
  }
22599
23215
  export const RthroNarrow: RthroNarrow;
22600
23216
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RigScale>;
23217
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RigScale | undefined;
23218
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RigScale | undefined;
22601
23219
  }
22602
23220
  export type RigScale = RigScale.Default | RigScale.Rthro | RigScale.RthroNarrow;
22603
23221
  /**
@@ -22640,6 +23258,8 @@ declare namespace Enum {
22640
23258
  }
22641
23259
  export const None: None;
22642
23260
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RigType>;
23261
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RigType | undefined;
23262
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RigType | undefined;
22643
23263
  }
22644
23264
  export type RigType = RigType.R15 | RigType.Custom | RigType.None;
22645
23265
  /**
@@ -22693,6 +23313,8 @@ declare namespace Enum {
22693
23313
  }
22694
23314
  export const InverseTapered: InverseTapered;
22695
23315
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RollOffMode>;
23316
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RollOffMode | undefined;
23317
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RollOffMode | undefined;
22696
23318
  }
22697
23319
  export type RollOffMode = RollOffMode.Inverse | RollOffMode.Linear | RollOffMode.LinearSquare | RollOffMode.InverseTapered;
22698
23320
  /**
@@ -22727,6 +23349,8 @@ declare namespace Enum {
22727
23349
  }
22728
23350
  export const Enabled: Enabled;
22729
23351
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RolloutState>;
23352
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RolloutState | undefined;
23353
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RolloutState | undefined;
22730
23354
  }
22731
23355
  export type RolloutState = RolloutState.Default | RolloutState.Disabled | RolloutState.Enabled;
22732
23356
  /**
@@ -22802,6 +23426,8 @@ declare namespace Enum {
22802
23426
  }
22803
23427
  export const ZYX: ZYX;
22804
23428
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RotationOrder>;
23429
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RotationOrder | undefined;
23430
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RotationOrder | undefined;
22805
23431
  }
22806
23432
  export type RotationOrder = RotationOrder.XYZ | RotationOrder.XZY | RotationOrder.YZX | RotationOrder.YXZ | RotationOrder.ZXY | RotationOrder.ZYX;
22807
23433
  /**
@@ -22827,6 +23453,8 @@ declare namespace Enum {
22827
23453
  }
22828
23454
  export const CameraRelative: CameraRelative;
22829
23455
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RotationType>;
23456
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RotationType | undefined;
23457
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RotationType | undefined;
22830
23458
  }
22831
23459
  export type RotationType = RotationType.MovementRelative | RotationType.CameraRelative;
22832
23460
  /**
@@ -22861,6 +23489,8 @@ declare namespace Enum {
22861
23489
  }
22862
23490
  export const Enabled: Enabled;
22863
23491
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RtlTextSupport>;
23492
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RtlTextSupport | undefined;
23493
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RtlTextSupport | undefined;
22864
23494
  }
22865
23495
  export type RtlTextSupport = RtlTextSupport.Default | RtlTextSupport.Disabled | RtlTextSupport.Enabled;
22866
23496
  /**
@@ -22912,6 +23542,8 @@ declare namespace Enum {
22912
23542
  }
22913
23543
  export const Plugin: Plugin;
22914
23544
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RunContext>;
23545
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RunContext | undefined;
23546
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RunContext | undefined;
22915
23547
  }
22916
23548
  export type RunContext = RunContext.Legacy | RunContext.Server | RunContext.Client | RunContext.Plugin;
22917
23549
  /**
@@ -22946,6 +23578,8 @@ declare namespace Enum {
22946
23578
  }
22947
23579
  export const Paused: Paused;
22948
23580
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RunState>;
23581
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RunState | undefined;
23582
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RunState | undefined;
22949
23583
  }
22950
23584
  export type RunState = RunState.Stopped | RunState.Running | RunState.Paused;
22951
23585
  /**
@@ -22980,6 +23614,8 @@ declare namespace Enum {
22980
23614
  }
22981
23615
  export const Hybrid: Hybrid;
22982
23616
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RuntimeUndoBehavior>;
23617
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RuntimeUndoBehavior | undefined;
23618
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RuntimeUndoBehavior | undefined;
22983
23619
  }
22984
23620
  export type RuntimeUndoBehavior = RuntimeUndoBehavior.Aggregate | RuntimeUndoBehavior.Snapshot | RuntimeUndoBehavior.Hybrid;
22985
23621
  /**
@@ -23011,6 +23647,8 @@ declare namespace Enum {
23011
23647
  }
23012
23648
  export const FullscreenExtension: FullscreenExtension;
23013
23649
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SafeAreaCompatibility>;
23650
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SafeAreaCompatibility | undefined;
23651
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SafeAreaCompatibility | undefined;
23014
23652
  }
23015
23653
  export type SafeAreaCompatibility = SafeAreaCompatibility.None | SafeAreaCompatibility.FullscreenExtension;
23016
23654
  /**
@@ -23045,6 +23683,8 @@ declare namespace Enum {
23045
23683
  }
23046
23684
  export const Premium: Premium;
23047
23685
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SalesTypeFilter>;
23686
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SalesTypeFilter | undefined;
23687
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SalesTypeFilter | undefined;
23048
23688
  }
23049
23689
  export type SalesTypeFilter = SalesTypeFilter.All | SalesTypeFilter.Collectibles | SalesTypeFilter.Premium;
23050
23690
  /**
@@ -23070,6 +23710,8 @@ declare namespace Enum {
23070
23710
  }
23071
23711
  export const Experimental: Experimental;
23072
23712
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SandboxedInstanceMode>;
23713
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SandboxedInstanceMode | undefined;
23714
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SandboxedInstanceMode | undefined;
23073
23715
  }
23074
23716
  export type SandboxedInstanceMode = SandboxedInstanceMode.Default | SandboxedInstanceMode.Experimental;
23075
23717
  /**
@@ -23131,6 +23773,8 @@ declare namespace Enum {
23131
23773
  }
23132
23774
  export const Throttled: Throttled;
23133
23775
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SaveAvatarThumbnailCustomizationFailure>;
23776
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SaveAvatarThumbnailCustomizationFailure | undefined;
23777
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SaveAvatarThumbnailCustomizationFailure | undefined;
23134
23778
  }
23135
23779
  export type SaveAvatarThumbnailCustomizationFailure = SaveAvatarThumbnailCustomizationFailure.BadThumbnailType | SaveAvatarThumbnailCustomizationFailure.BadYRotDeg | SaveAvatarThumbnailCustomizationFailure.BadFieldOfViewDeg | SaveAvatarThumbnailCustomizationFailure.BadDistanceScale | SaveAvatarThumbnailCustomizationFailure.Other | SaveAvatarThumbnailCustomizationFailure.Throttled;
23136
23780
  /**
@@ -23175,6 +23819,8 @@ declare namespace Enum {
23175
23819
  }
23176
23820
  export const SaveAll: SaveAll;
23177
23821
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SaveFilter>;
23822
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SaveFilter | undefined;
23823
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SaveFilter | undefined;
23178
23824
  }
23179
23825
  export type SaveFilter = SaveFilter.SaveWorld | SaveFilter.SaveGame | SaveFilter.SaveAll;
23180
23826
  /**
@@ -23281,6 +23927,8 @@ declare namespace Enum {
23281
23927
  }
23282
23928
  export const QualityLevel10: QualityLevel10;
23283
23929
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SavedQualitySetting>;
23930
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SavedQualitySetting | undefined;
23931
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SavedQualitySetting | undefined;
23284
23932
  }
23285
23933
  export type SavedQualitySetting = SavedQualitySetting.Automatic | SavedQualitySetting.QualityLevel1 | SavedQualitySetting.QualityLevel2 | SavedQualitySetting.QualityLevel3 | SavedQualitySetting.QualityLevel4 | SavedQualitySetting.QualityLevel5 | SavedQualitySetting.QualityLevel6 | SavedQualitySetting.QualityLevel7 | SavedQualitySetting.QualityLevel8 | SavedQualitySetting.QualityLevel9 | SavedQualitySetting.QualityLevel10;
23286
23934
  /**
@@ -23345,6 +23993,8 @@ declare namespace Enum {
23345
23993
  }
23346
23994
  export const Crop: Crop;
23347
23995
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ScaleType>;
23996
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ScaleType | undefined;
23997
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ScaleType | undefined;
23348
23998
  }
23349
23999
  export type ScaleType = ScaleType.Stretch | ScaleType.Slice | ScaleType.Tile | ScaleType.Fit | ScaleType.Crop;
23350
24000
  /**
@@ -23424,6 +24074,8 @@ declare namespace Enum {
23424
24074
  }
23425
24075
  export const ConsentDenied: ConsentDenied;
23426
24076
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ScopeCheckResult>;
24077
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ScopeCheckResult | undefined;
24078
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ScopeCheckResult | undefined;
23427
24079
  }
23428
24080
  export type ScopeCheckResult = ScopeCheckResult.ConsentAccepted | ScopeCheckResult.InvalidScopes | ScopeCheckResult.Timeout | ScopeCheckResult.NoUserInput | ScopeCheckResult.BackendError | ScopeCheckResult.UnexpectedError | ScopeCheckResult.InvalidArgument | ScopeCheckResult.ConsentDenied;
23429
24081
  /**
@@ -23477,6 +24129,8 @@ declare namespace Enum {
23477
24129
  }
23478
24130
  export const TopbarSafeInsets: TopbarSafeInsets;
23479
24131
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ScreenInsets>;
24132
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ScreenInsets | undefined;
24133
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ScreenInsets | undefined;
23480
24134
  }
23481
24135
  export type ScreenInsets = ScreenInsets.None | ScreenInsets.DeviceSafeInsets | ScreenInsets.CoreUISafeInsets | ScreenInsets.TopbarSafeInsets;
23482
24136
  /**
@@ -23541,6 +24195,8 @@ declare namespace Enum {
23541
24195
  }
23542
24196
  export const Sensor: Sensor;
23543
24197
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ScreenOrientation>;
24198
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ScreenOrientation | undefined;
24199
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ScreenOrientation | undefined;
23544
24200
  }
23545
24201
  export type ScreenOrientation = ScreenOrientation.LandscapeLeft | ScreenOrientation.LandscapeRight | ScreenOrientation.LandscapeSensor | ScreenOrientation.Portrait | ScreenOrientation.Sensor;
23546
24202
  /**
@@ -23583,6 +24239,8 @@ declare namespace Enum {
23583
24239
  }
23584
24240
  export const Always: Always;
23585
24241
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ScrollBarInset>;
24242
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ScrollBarInset | undefined;
24243
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ScrollBarInset | undefined;
23586
24244
  }
23587
24245
  export type ScrollBarInset = ScrollBarInset.None | ScrollBarInset.ScrollBar | ScrollBarInset.Always;
23588
24246
  /**
@@ -23625,6 +24283,8 @@ declare namespace Enum {
23625
24283
  }
23626
24284
  export const XY: XY;
23627
24285
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ScrollingDirection>;
24286
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ScrollingDirection | undefined;
24287
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ScrollingDirection | undefined;
23628
24288
  }
23629
24289
  export type ScrollingDirection = ScrollingDirection.X | ScrollingDirection.Y | ScrollingDirection.XY;
23630
24290
  /**
@@ -23821,6 +24481,8 @@ declare namespace Enum {
23821
24481
  }
23822
24482
  export const LegacySound: LegacySound;
23823
24483
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SecurityCapability>;
24484
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SecurityCapability | undefined;
24485
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SecurityCapability | undefined;
23824
24486
  }
23825
24487
  export type SecurityCapability = SecurityCapability.RunClientScript | SecurityCapability.RunServerScript | SecurityCapability.AccessOutsideWrite | SecurityCapability.AssetRequire | SecurityCapability.LoadString | SecurityCapability.ScriptGlobals | SecurityCapability.CreateInstances | SecurityCapability.Basic | SecurityCapability.Audio | SecurityCapability.DataStore | SecurityCapability.Network | SecurityCapability.Physics | SecurityCapability.UI | SecurityCapability.CSG | SecurityCapability.Chat | SecurityCapability.Animation | SecurityCapability.Avatar | SecurityCapability.Input | SecurityCapability.Environment | SecurityCapability.RemoteEvent | SecurityCapability.LegacySound;
23826
24488
  /**
@@ -23852,6 +24514,8 @@ declare namespace Enum {
23852
24514
  }
23853
24515
  export const Stop: Stop;
23854
24516
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SelectionBehavior>;
24517
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SelectionBehavior | undefined;
24518
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SelectionBehavior | undefined;
23855
24519
  }
23856
24520
  export type SelectionBehavior = SelectionBehavior.Escape | SelectionBehavior.Stop;
23857
24521
  /**
@@ -23886,6 +24550,8 @@ declare namespace Enum {
23886
24550
  }
23887
24551
  export const Both: Both;
23888
24552
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SelectionRenderMode>;
24553
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SelectionRenderMode | undefined;
24554
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SelectionRenderMode | undefined;
23889
24555
  }
23890
24556
  export type SelectionRenderMode = SelectionRenderMode.Outlines | SelectionRenderMode.BoundingBoxes | SelectionRenderMode.Both;
23891
24557
  /**
@@ -23950,6 +24616,8 @@ declare namespace Enum {
23950
24616
  }
23951
24617
  export const BottomRight: BottomRight;
23952
24618
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SelfViewPosition>;
24619
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SelfViewPosition | undefined;
24620
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SelfViewPosition | undefined;
23953
24621
  }
23954
24622
  export type SelfViewPosition = SelfViewPosition.LastPosition | SelfViewPosition.TopLeft | SelfViewPosition.TopRight | SelfViewPosition.BottomLeft | SelfViewPosition.BottomRight;
23955
24623
  /**
@@ -23975,6 +24643,8 @@ declare namespace Enum {
23975
24643
  }
23976
24644
  export const Ladder: Ladder;
23977
24645
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SensorMode>;
24646
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SensorMode | undefined;
24647
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SensorMode | undefined;
23978
24648
  }
23979
24649
  export type SensorMode = SensorMode.Floor | SensorMode.Ladder;
23980
24650
  /**
@@ -24000,6 +24670,8 @@ declare namespace Enum {
24000
24670
  }
24001
24671
  export const Manual: Manual;
24002
24672
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SensorUpdateType>;
24673
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SensorUpdateType | undefined;
24674
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SensorUpdateType | undefined;
24003
24675
  }
24004
24676
  export type SensorUpdateType = SensorUpdateType.OnRead | SensorUpdateType.Manual;
24005
24677
  /**
@@ -24034,6 +24706,8 @@ declare namespace Enum {
24034
24706
  }
24035
24707
  export const Disabled: Disabled;
24036
24708
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ServerLiveEditingMode>;
24709
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ServerLiveEditingMode | undefined;
24710
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ServerLiveEditingMode | undefined;
24037
24711
  }
24038
24712
  export type ServerLiveEditingMode = ServerLiveEditingMode.Uninitialized | ServerLiveEditingMode.Enabled | ServerLiveEditingMode.Disabled;
24039
24713
  /**
@@ -24068,6 +24742,8 @@ declare namespace Enum {
24068
24742
  }
24069
24743
  export const WithChildren: WithChildren;
24070
24744
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ServiceVisibility>;
24745
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ServiceVisibility | undefined;
24746
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ServiceVisibility | undefined;
24071
24747
  }
24072
24748
  export type ServiceVisibility = ServiceVisibility.Always | ServiceVisibility.Off | ServiceVisibility.WithChildren;
24073
24749
  /**
@@ -24111,6 +24787,8 @@ declare namespace Enum {
24111
24787
  }
24112
24788
  export const Hint: Hint;
24113
24789
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.Severity>;
24790
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.Severity | undefined;
24791
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.Severity | undefined;
24114
24792
  }
24115
24793
  export type Severity = Severity.Error | Severity.Warning | Severity.Information | Severity.Hint;
24116
24794
  /**
@@ -24163,6 +24841,8 @@ declare namespace Enum {
24163
24841
  }
24164
24842
  export const ShowInterrupted: ShowInterrupted;
24165
24843
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ShowAdResult>;
24844
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ShowAdResult | undefined;
24845
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ShowAdResult | undefined;
24166
24846
  }
24167
24847
  export type ShowAdResult = ShowAdResult.ShowCompleted | ShowAdResult.AdNotReady | ShowAdResult.AdAlreadyShowing | ShowAdResult.InternalError | ShowAdResult.ShowInterrupted;
24168
24848
  /**
@@ -24216,6 +24896,8 @@ declare namespace Enum {
24216
24896
  }
24217
24897
  export const AncestryDeferred: AncestryDeferred;
24218
24898
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SignalBehavior>;
24899
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SignalBehavior | undefined;
24900
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SignalBehavior | undefined;
24219
24901
  }
24220
24902
  export type SignalBehavior = SignalBehavior.Default | SignalBehavior.Immediate | SignalBehavior.Deferred | SignalBehavior.AncestryDeferred;
24221
24903
  /**
@@ -24258,6 +24940,8 @@ declare namespace Enum {
24258
24940
  }
24259
24941
  export const RelativeYY: RelativeYY;
24260
24942
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SizeConstraint>;
24943
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SizeConstraint | undefined;
24944
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SizeConstraint | undefined;
24261
24945
  }
24262
24946
  export type SizeConstraint = SizeConstraint.RelativeXY | SizeConstraint.RelativeXX | SizeConstraint.RelativeYY;
24263
24947
  /**
@@ -24283,6 +24967,8 @@ declare namespace Enum {
24283
24967
  }
24284
24968
  export const AlgorithmAgnostic: AlgorithmAgnostic;
24285
24969
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SolverConvergenceMetricType>;
24970
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SolverConvergenceMetricType | undefined;
24971
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SolverConvergenceMetricType | undefined;
24286
24972
  }
24287
24973
  export type SolverConvergenceMetricType = SolverConvergenceMetricType.IterationBased | SolverConvergenceMetricType.AlgorithmAgnostic;
24288
24974
  /**
@@ -24317,6 +25003,8 @@ declare namespace Enum {
24317
25003
  }
24318
25004
  export const PerEdge: PerEdge;
24319
25005
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SolverConvergenceVisualizationMode>;
25006
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SolverConvergenceVisualizationMode | undefined;
25007
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SolverConvergenceVisualizationMode | undefined;
24320
25008
  }
24321
25009
  export type SolverConvergenceVisualizationMode = SolverConvergenceVisualizationMode.Disabled | SolverConvergenceVisualizationMode.PerIsland | SolverConvergenceVisualizationMode.PerEdge;
24322
25010
  /**
@@ -24342,6 +25030,8 @@ declare namespace Enum {
24342
25030
  }
24343
25031
  export const Descending: Descending;
24344
25032
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SortDirection>;
25033
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SortDirection | undefined;
25034
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SortDirection | undefined;
24345
25035
  }
24346
25036
  export type SortDirection = SortDirection.Ascending | SortDirection.Descending;
24347
25037
  /**
@@ -24386,6 +25076,8 @@ declare namespace Enum {
24386
25076
  }
24387
25077
  export const LayoutOrder: LayoutOrder;
24388
25078
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SortOrder>;
25079
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SortOrder | undefined;
25080
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SortOrder | undefined;
24389
25081
  }
24390
25082
  export type SortOrder = SortOrder.Name | SortOrder.Custom | SortOrder.LayoutOrder;
24391
25083
  /**
@@ -24447,6 +25139,8 @@ declare namespace Enum {
24447
25139
  }
24448
25140
  export const ChatHotkey: ChatHotkey;
24449
25141
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SpecialKey>;
25142
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SpecialKey | undefined;
25143
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SpecialKey | undefined;
24450
25144
  }
24451
25145
  export type SpecialKey = SpecialKey.Insert | SpecialKey.Home | SpecialKey.End | SpecialKey.PageUp | SpecialKey.PageDown | SpecialKey.ChatHotkey;
24452
25146
  /**
@@ -24500,6 +25194,8 @@ declare namespace Enum {
24500
25194
  }
24501
25195
  export const BottomRight: BottomRight;
24502
25196
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.StartCorner>;
25197
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.StartCorner | undefined;
25198
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.StartCorner | undefined;
24503
25199
  }
24504
25200
  export type StartCorner = StartCorner.TopLeft | StartCorner.TopRight | StartCorner.BottomLeft | StartCorner.BottomRight;
24505
25201
  /**
@@ -24533,6 +25229,8 @@ declare namespace Enum {
24533
25229
  }
24534
25230
  export const Confusion: Confusion;
24535
25231
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.Status>;
25232
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.Status | undefined;
25233
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.Status | undefined;
24536
25234
  }
24537
25235
  export type Status = Status.Poison | Status.Confusion;
24538
25236
  /**
@@ -24575,6 +25273,8 @@ declare namespace Enum {
24575
25273
  }
24576
25274
  export const Opportunistic: Opportunistic;
24577
25275
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.StreamOutBehavior>;
25276
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.StreamOutBehavior | undefined;
25277
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.StreamOutBehavior | undefined;
24578
25278
  }
24579
25279
  export type StreamOutBehavior = StreamOutBehavior.Default | StreamOutBehavior.LowMemory | StreamOutBehavior.Opportunistic;
24580
25280
  /**
@@ -24628,6 +25328,8 @@ declare namespace Enum {
24628
25328
  }
24629
25329
  export const PauseOutsideLoadedArea: PauseOutsideLoadedArea;
24630
25330
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.StreamingIntegrityMode>;
25331
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.StreamingIntegrityMode | undefined;
25332
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.StreamingIntegrityMode | undefined;
24631
25333
  }
24632
25334
  export type StreamingIntegrityMode = StreamingIntegrityMode.Default | StreamingIntegrityMode.Disabled | StreamingIntegrityMode.MinimumRadiusPause | StreamingIntegrityMode.PauseOutsideLoadedArea;
24633
25335
  /**
@@ -24676,6 +25378,8 @@ declare namespace Enum {
24676
25378
  }
24677
25379
  export const ClientPhysicsPause: ClientPhysicsPause;
24678
25380
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.StreamingPauseMode>;
25381
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.StreamingPauseMode | undefined;
25382
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.StreamingPauseMode | undefined;
24679
25383
  }
24680
25384
  export type StreamingPauseMode = StreamingPauseMode.Default | StreamingPauseMode.Disabled | StreamingPauseMode.ClientPhysicsPause;
24681
25385
  /**
@@ -24719,6 +25423,8 @@ declare namespace Enum {
24719
25423
  }
24720
25424
  export const LogOut: LogOut;
24721
25425
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.StudioCloseMode>;
25426
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.StudioCloseMode | undefined;
25427
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.StudioCloseMode | undefined;
24722
25428
  }
24723
25429
  export type StudioCloseMode = StudioCloseMode.None | StudioCloseMode.CloseStudio | StudioCloseMode.CloseDoc | StudioCloseMode.LogOut;
24724
25430
  /**
@@ -24771,6 +25477,8 @@ declare namespace Enum {
24771
25477
  }
24772
25478
  export const None: None;
24773
25479
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.StudioDataModelType>;
25480
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.StudioDataModelType | undefined;
25481
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.StudioDataModelType | undefined;
24774
25482
  }
24775
25483
  export type StudioDataModelType = StudioDataModelType.Edit | StudioDataModelType.PlayClient | StudioDataModelType.PlayServer | StudioDataModelType.Standalone | StudioDataModelType.None;
24776
25484
  /**
@@ -24796,6 +25504,8 @@ declare namespace Enum {
24796
25504
  }
24797
25505
  export const TeamCreateConflict: TeamCreateConflict;
24798
25506
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.StudioPlaceUpdateFailureReason>;
25507
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.StudioPlaceUpdateFailureReason | undefined;
25508
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.StudioPlaceUpdateFailureReason | undefined;
24799
25509
  }
24800
25510
  export type StudioPlaceUpdateFailureReason = StudioPlaceUpdateFailureReason.Other | StudioPlaceUpdateFailureReason.TeamCreateConflict;
24801
25511
  /**
@@ -25226,6 +25936,8 @@ declare namespace Enum {
25226
25936
  }
25227
25937
  export const IndentationRuler: IndentationRuler;
25228
25938
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.StudioScriptEditorColorCategories>;
25939
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.StudioScriptEditorColorCategories | undefined;
25940
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.StudioScriptEditorColorCategories | undefined;
25229
25941
  }
25230
25942
  export type StudioScriptEditorColorCategories = StudioScriptEditorColorCategories.Default | StudioScriptEditorColorCategories.Operator | StudioScriptEditorColorCategories.Number | StudioScriptEditorColorCategories.String | StudioScriptEditorColorCategories.Comment | StudioScriptEditorColorCategories.Keyword | StudioScriptEditorColorCategories.Builtin | StudioScriptEditorColorCategories.Method | StudioScriptEditorColorCategories.Property | StudioScriptEditorColorCategories.Nil | StudioScriptEditorColorCategories.Bool | StudioScriptEditorColorCategories.Function | StudioScriptEditorColorCategories.Local | StudioScriptEditorColorCategories.Self | StudioScriptEditorColorCategories.LuauKeyword | StudioScriptEditorColorCategories.FunctionName | StudioScriptEditorColorCategories.TODO | StudioScriptEditorColorCategories.Background | StudioScriptEditorColorCategories.SelectionText | StudioScriptEditorColorCategories.SelectionBackground | StudioScriptEditorColorCategories.FindSelectionBackground | StudioScriptEditorColorCategories.MatchingWordBackground | StudioScriptEditorColorCategories.Warning | StudioScriptEditorColorCategories.Error | StudioScriptEditorColorCategories.Info | StudioScriptEditorColorCategories.Hint | StudioScriptEditorColorCategories.Whitespace | StudioScriptEditorColorCategories.ActiveLine | StudioScriptEditorColorCategories.DebuggerCurrentLine | StudioScriptEditorColorCategories.DebuggerErrorLine | StudioScriptEditorColorCategories.Ruler | StudioScriptEditorColorCategories.Bracket | StudioScriptEditorColorCategories.Type | StudioScriptEditorColorCategories.MenuPrimaryText | StudioScriptEditorColorCategories.MenuSecondaryText | StudioScriptEditorColorCategories.MenuSelectedText | StudioScriptEditorColorCategories.MenuBackground | StudioScriptEditorColorCategories.MenuSelectedBackground | StudioScriptEditorColorCategories.MenuScrollbarBackground | StudioScriptEditorColorCategories.MenuScrollbarHandle | StudioScriptEditorColorCategories.MenuBorder | StudioScriptEditorColorCategories.DocViewCodeBackground | StudioScriptEditorColorCategories.AICOOverlayText | StudioScriptEditorColorCategories.AICOOverlayButtonBackground | StudioScriptEditorColorCategories.AICOOverlayButtonBackgroundHover | StudioScriptEditorColorCategories.AICOOverlayButtonBackgroundPressed | StudioScriptEditorColorCategories.IndentationRuler;
25231
25943
  /**
@@ -25269,6 +25981,8 @@ declare namespace Enum {
25269
25981
  }
25270
25982
  export const Custom: Custom;
25271
25983
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.StudioScriptEditorColorPresets>;
25984
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.StudioScriptEditorColorPresets | undefined;
25985
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.StudioScriptEditorColorPresets | undefined;
25272
25986
  }
25273
25987
  export type StudioScriptEditorColorPresets = StudioScriptEditorColorPresets.RobloxDefault | StudioScriptEditorColorPresets.Extra1 | StudioScriptEditorColorPresets.Extra2 | StudioScriptEditorColorPresets.Custom;
25274
25988
  /**
@@ -26492,6 +27206,8 @@ declare namespace Enum {
26492
27206
  }
26493
27207
  export const DiffLineNumSeparatorBackgroundHover: DiffLineNumSeparatorBackgroundHover;
26494
27208
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.StudioStyleGuideColor>;
27209
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.StudioStyleGuideColor | undefined;
27210
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.StudioStyleGuideColor | undefined;
26495
27211
  }
26496
27212
  export type StudioStyleGuideColor = StudioStyleGuideColor.MainBackground | StudioStyleGuideColor.Titlebar | StudioStyleGuideColor.Dropdown | StudioStyleGuideColor.Tooltip | StudioStyleGuideColor.Notification | StudioStyleGuideColor.ScrollBar | StudioStyleGuideColor.ScrollBarBackground | StudioStyleGuideColor.TabBar | StudioStyleGuideColor.Tab | StudioStyleGuideColor.FilterButtonDefault | StudioStyleGuideColor.FilterButtonHover | StudioStyleGuideColor.FilterButtonChecked | StudioStyleGuideColor.FilterButtonAccent | StudioStyleGuideColor.FilterButtonBorder | StudioStyleGuideColor.FilterButtonBorderAlt | StudioStyleGuideColor.RibbonTab | StudioStyleGuideColor.RibbonTabTopBar | StudioStyleGuideColor.Button | StudioStyleGuideColor.MainButton | StudioStyleGuideColor.RibbonButton | StudioStyleGuideColor.ViewPortBackground | StudioStyleGuideColor.InputFieldBackground | StudioStyleGuideColor.Item | StudioStyleGuideColor.TableItem | StudioStyleGuideColor.CategoryItem | StudioStyleGuideColor.GameSettingsTableItem | StudioStyleGuideColor.GameSettingsTooltip | StudioStyleGuideColor.EmulatorBar | StudioStyleGuideColor.EmulatorDropDown | StudioStyleGuideColor.ColorPickerFrame | StudioStyleGuideColor.CurrentMarker | StudioStyleGuideColor.Border | StudioStyleGuideColor.DropShadow | StudioStyleGuideColor.Shadow | StudioStyleGuideColor.Light | StudioStyleGuideColor.Dark | StudioStyleGuideColor.Mid | StudioStyleGuideColor.MainText | StudioStyleGuideColor.SubText | StudioStyleGuideColor.TitlebarText | StudioStyleGuideColor.BrightText | StudioStyleGuideColor.DimmedText | StudioStyleGuideColor.LinkText | StudioStyleGuideColor.WarningText | StudioStyleGuideColor.ErrorText | StudioStyleGuideColor.InfoText | StudioStyleGuideColor.SensitiveText | StudioStyleGuideColor.ScriptSideWidget | StudioStyleGuideColor.ScriptBackground | StudioStyleGuideColor.ScriptText | StudioStyleGuideColor.ScriptSelectionText | StudioStyleGuideColor.ScriptSelectionBackground | StudioStyleGuideColor.ScriptFindSelectionBackground | StudioStyleGuideColor.ScriptMatchingWordSelectionBackground | StudioStyleGuideColor.ScriptOperator | StudioStyleGuideColor.ScriptNumber | StudioStyleGuideColor.ScriptString | StudioStyleGuideColor.ScriptComment | StudioStyleGuideColor.ScriptKeyword | StudioStyleGuideColor.ScriptBuiltInFunction | StudioStyleGuideColor.ScriptWarning | StudioStyleGuideColor.ScriptError | StudioStyleGuideColor.ScriptInformation | StudioStyleGuideColor.ScriptHint | StudioStyleGuideColor.ScriptWhitespace | StudioStyleGuideColor.ScriptRuler | StudioStyleGuideColor.DocViewCodeBackground | StudioStyleGuideColor.DebuggerCurrentLine | StudioStyleGuideColor.DebuggerErrorLine | StudioStyleGuideColor.DiffFilePathText | StudioStyleGuideColor.DiffTextHunkInfo | StudioStyleGuideColor.DiffTextNoChange | StudioStyleGuideColor.DiffTextAddition | StudioStyleGuideColor.DiffTextDeletion | StudioStyleGuideColor.DiffTextSeparatorBackground | StudioStyleGuideColor.DiffTextNoChangeBackground | StudioStyleGuideColor.DiffTextAdditionBackground | StudioStyleGuideColor.DiffTextDeletionBackground | StudioStyleGuideColor.DiffLineNum | StudioStyleGuideColor.DiffLineNumSeparatorBackground | StudioStyleGuideColor.DiffLineNumNoChangeBackground | StudioStyleGuideColor.DiffLineNumAdditionBackground | StudioStyleGuideColor.DiffLineNumDeletionBackground | StudioStyleGuideColor.DiffFilePathBackground | StudioStyleGuideColor.DiffFilePathBorder | StudioStyleGuideColor.ChatIncomingBgColor | StudioStyleGuideColor.ChatIncomingTextColor | StudioStyleGuideColor.ChatOutgoingBgColor | StudioStyleGuideColor.ChatOutgoingTextColor | StudioStyleGuideColor.ChatModeratedMessageColor | StudioStyleGuideColor.Separator | StudioStyleGuideColor.ButtonBorder | StudioStyleGuideColor.ButtonText | StudioStyleGuideColor.InputFieldBorder | StudioStyleGuideColor.CheckedFieldBackground | StudioStyleGuideColor.CheckedFieldBorder | StudioStyleGuideColor.CheckedFieldIndicator | StudioStyleGuideColor.HeaderSection | StudioStyleGuideColor.Midlight | StudioStyleGuideColor.StatusBar | StudioStyleGuideColor.DialogButton | StudioStyleGuideColor.DialogButtonText | StudioStyleGuideColor.DialogButtonBorder | StudioStyleGuideColor.DialogMainButton | StudioStyleGuideColor.DialogMainButtonText | StudioStyleGuideColor.InfoBarWarningBackground | StudioStyleGuideColor.InfoBarWarningText | StudioStyleGuideColor.ScriptEditorCurrentLine | StudioStyleGuideColor.ScriptMethod | StudioStyleGuideColor.ScriptProperty | StudioStyleGuideColor.ScriptNil | StudioStyleGuideColor.ScriptBool | StudioStyleGuideColor.ScriptFunction | StudioStyleGuideColor.ScriptLocal | StudioStyleGuideColor.ScriptSelf | StudioStyleGuideColor.ScriptLuauKeyword | StudioStyleGuideColor.ScriptFunctionName | StudioStyleGuideColor.ScriptTodo | StudioStyleGuideColor.ScriptBracket | StudioStyleGuideColor.AttributeCog | StudioStyleGuideColor.AICOOverlayText | StudioStyleGuideColor.AICOOverlayButtonBackground | StudioStyleGuideColor.AICOOverlayButtonBackgroundHover | StudioStyleGuideColor.AICOOverlayButtonBackgroundPressed | StudioStyleGuideColor.OnboardingCover | StudioStyleGuideColor.OnboardingHighlight | StudioStyleGuideColor.OnboardingShadow | StudioStyleGuideColor.BreakpointMarker | StudioStyleGuideColor.DiffLineNumHover | StudioStyleGuideColor.DiffLineNumSeparatorBackgroundHover;
26497
27213
  /**
@@ -26544,6 +27260,8 @@ declare namespace Enum {
26544
27260
  }
26545
27261
  export const Hover: Hover;
26546
27262
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.StudioStyleGuideModifier>;
27263
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.StudioStyleGuideModifier | undefined;
27264
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.StudioStyleGuideModifier | undefined;
26547
27265
  }
26548
27266
  export type StudioStyleGuideModifier = StudioStyleGuideModifier.Default | StudioStyleGuideModifier.Selected | StudioStyleGuideModifier.Pressed | StudioStyleGuideModifier.Disabled | StudioStyleGuideModifier.Hover;
26549
27267
  /**
@@ -26586,6 +27304,8 @@ declare namespace Enum {
26586
27304
  }
26587
27305
  export const NoSupports: NoSupports;
26588
27306
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.Style>;
27307
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.Style | undefined;
27308
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.Style | undefined;
26589
27309
  }
26590
27310
  export type Style = Style.AlternatingSupports | Style.BridgeStyleSupports | Style.NoSupports;
26591
27311
  /**
@@ -26648,6 +27368,8 @@ declare namespace Enum {
26648
27368
  }
26649
27369
  export const Lapsed: Lapsed;
26650
27370
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SubscriptionExpirationReason>;
27371
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SubscriptionExpirationReason | undefined;
27372
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SubscriptionExpirationReason | undefined;
26651
27373
  }
26652
27374
  export type SubscriptionExpirationReason = SubscriptionExpirationReason.ProductInactive | SubscriptionExpirationReason.ProductDeleted | SubscriptionExpirationReason.SubscriberCancelled | SubscriptionExpirationReason.SubscriberRefunded | SubscriptionExpirationReason.Lapsed;
26653
27375
  /**
@@ -26677,6 +27399,8 @@ declare namespace Enum {
26677
27399
  }
26678
27400
  export const Refunded: Refunded;
26679
27401
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SubscriptionPaymentStatus>;
27402
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SubscriptionPaymentStatus | undefined;
27403
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SubscriptionPaymentStatus | undefined;
26680
27404
  }
26681
27405
  export type SubscriptionPaymentStatus = SubscriptionPaymentStatus.Paid | SubscriptionPaymentStatus.Refunded;
26682
27406
  /**
@@ -26693,6 +27417,8 @@ declare namespace Enum {
26693
27417
  }
26694
27418
  export const Month: Month;
26695
27419
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SubscriptionPeriod>;
27420
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SubscriptionPeriod | undefined;
27421
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SubscriptionPeriod | undefined;
26696
27422
  }
26697
27423
  export type SubscriptionPeriod = SubscriptionPeriod.Month;
26698
27424
  /**
@@ -26755,6 +27481,8 @@ declare namespace Enum {
26755
27481
  }
26756
27482
  export const Expired: Expired;
26757
27483
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SubscriptionState>;
27484
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SubscriptionState | undefined;
27485
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SubscriptionState | undefined;
26758
27486
  }
26759
27487
  export type SubscriptionState = SubscriptionState.NeverSubscribed | SubscriptionState.SubscribedWillRenew | SubscriptionState.SubscribedWillNotRenew | SubscriptionState.SubscribedRenewalPaymentPending | SubscriptionState.Expired;
26760
27488
  /**
@@ -26808,6 +27536,8 @@ declare namespace Enum {
26808
27536
  }
26809
27537
  export const Motor: Motor;
26810
27538
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SurfaceConstraint>;
27539
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SurfaceConstraint | undefined;
27540
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SurfaceConstraint | undefined;
26811
27541
  }
26812
27542
  export type SurfaceConstraint = SurfaceConstraint.None | SurfaceConstraint.Hinge | SurfaceConstraint.SteppingMotor | SurfaceConstraint.Motor;
26813
27543
  /**
@@ -26833,6 +27563,8 @@ declare namespace Enum {
26833
27563
  }
26834
27564
  export const CurvedHorizontally: CurvedHorizontally;
26835
27565
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SurfaceGuiShape>;
27566
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SurfaceGuiShape | undefined;
27567
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SurfaceGuiShape | undefined;
26836
27568
  }
26837
27569
  export type SurfaceGuiShape = SurfaceGuiShape.Flat | SurfaceGuiShape.CurvedHorizontally;
26838
27570
  /**
@@ -26864,6 +27596,8 @@ declare namespace Enum {
26864
27596
  }
26865
27597
  export const PixelsPerStud: PixelsPerStud;
26866
27598
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SurfaceGuiSizingMode>;
27599
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SurfaceGuiSizingMode | undefined;
27600
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SurfaceGuiSizingMode | undefined;
26867
27601
  }
26868
27602
  export type SurfaceGuiSizingMode = SurfaceGuiSizingMode.FixedSize | SurfaceGuiSizingMode.PixelsPerStud;
26869
27603
  /**
@@ -26995,6 +27729,8 @@ declare namespace Enum {
26995
27729
  }
26996
27730
  export const SmoothNoOutlines: SmoothNoOutlines;
26997
27731
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SurfaceType>;
27732
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SurfaceType | undefined;
27733
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SurfaceType | undefined;
26998
27734
  }
26999
27735
  export type SurfaceType = SurfaceType.Smooth | SurfaceType.Glue | SurfaceType.Weld | SurfaceType.Studs | SurfaceType.Inlet | SurfaceType.Universal | SurfaceType.Hinge | SurfaceType.Motor | SurfaceType.SteppingMotor | SurfaceType.SmoothNoOutlines;
27000
27736
  /**
@@ -27059,6 +27795,8 @@ declare namespace Enum {
27059
27795
  }
27060
27796
  export const None: None;
27061
27797
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SwipeDirection>;
27798
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SwipeDirection | undefined;
27799
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SwipeDirection | undefined;
27062
27800
  }
27063
27801
  export type SwipeDirection = SwipeDirection.Right | SwipeDirection.Left | SwipeDirection.Up | SwipeDirection.Down | SwipeDirection.None;
27064
27802
  /**
@@ -27090,6 +27828,8 @@ declare namespace Enum {
27090
27828
  }
27091
27829
  export const ColumnMajor: ColumnMajor;
27092
27830
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TableMajorAxis>;
27831
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TableMajorAxis | undefined;
27832
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TableMajorAxis | undefined;
27093
27833
  }
27094
27834
  export type TableMajorAxis = TableMajorAxis.RowMajor | TableMajorAxis.ColumnMajor;
27095
27835
  /**
@@ -27124,6 +27864,8 @@ declare namespace Enum {
27124
27864
  }
27125
27865
  export const NoError: NoError;
27126
27866
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TeamCreateErrorState>;
27867
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TeamCreateErrorState | undefined;
27868
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TeamCreateErrorState | undefined;
27127
27869
  }
27128
27870
  export type TeamCreateErrorState = TeamCreateErrorState.PlaceSizeTooLarge | TeamCreateErrorState.PlaceSizeApproachingLimit | TeamCreateErrorState.NoError;
27129
27871
  /**
@@ -27199,6 +27941,8 @@ declare namespace Enum {
27199
27941
  }
27200
27942
  export const Unified: Unified;
27201
27943
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.Technology>;
27944
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.Technology | undefined;
27945
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.Technology | undefined;
27202
27946
  }
27203
27947
  export type Technology = Technology.Voxel | Technology.Compatibility | Technology.ShadowMap | Technology.Future | Technology.Legacy | Technology.Unified;
27204
27948
  /**
@@ -27269,6 +28013,8 @@ declare namespace Enum {
27269
28013
  }
27270
28014
  export const TeleportUnknown: TeleportUnknown;
27271
28015
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TeleportMethod>;
28016
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TeleportMethod | undefined;
28017
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TeleportMethod | undefined;
27272
28018
  }
27273
28019
  export type TeleportMethod = TeleportMethod.TeleportToSpawnByName | TeleportMethod.TeleportToPlaceInstance | TeleportMethod.TeleportToPrivateServer | TeleportMethod.TeleportPartyAsync | TeleportMethod.TeleportToVIPServer | TeleportMethod.TeleportToInstanceBack | TeleportMethod.TeleportUnknown;
27274
28020
  /**
@@ -27366,6 +28112,8 @@ declare namespace Enum {
27366
28112
  }
27367
28113
  export const IsTeleporting: IsTeleporting;
27368
28114
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TeleportResult>;
28115
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TeleportResult | undefined;
28116
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TeleportResult | undefined;
27369
28117
  }
27370
28118
  export type TeleportResult = TeleportResult.Success | TeleportResult.Failure | TeleportResult.GameNotFound | TeleportResult.GameEnded | TeleportResult.GameFull | TeleportResult.Unauthorized | TeleportResult.Flooded | TeleportResult.IsTeleporting;
27371
28119
  /**
@@ -27430,6 +28178,8 @@ declare namespace Enum {
27430
28178
  }
27431
28179
  export const InProgress: InProgress;
27432
28180
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TeleportState>;
28181
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TeleportState | undefined;
28182
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TeleportState | undefined;
27433
28183
  }
27434
28184
  export type TeleportState = TeleportState.RequestedFromServer | TeleportState.Started | TeleportState.WaitingForServer | TeleportState.Failed | TeleportState.InProgress;
27435
28185
  /**
@@ -27490,6 +28240,8 @@ declare namespace Enum {
27490
28240
  }
27491
28241
  export const ToInstanceBack: ToInstanceBack;
27492
28242
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TeleportType>;
28243
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TeleportType | undefined;
28244
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TeleportType | undefined;
27493
28245
  }
27494
28246
  export type TeleportType = TeleportType.ToPlace | TeleportType.ToInstance | TeleportType.ToReservedServer | TeleportType.ToVIPServer | TeleportType.ToInstanceBack;
27495
28247
  /**
@@ -27605,6 +28357,8 @@ declare namespace Enum {
27605
28357
  }
27606
28358
  export const Other: Other;
27607
28359
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TerrainAcquisitionMethod>;
28360
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TerrainAcquisitionMethod | undefined;
28361
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TerrainAcquisitionMethod | undefined;
27608
28362
  }
27609
28363
  export type TerrainAcquisitionMethod = TerrainAcquisitionMethod.None | TerrainAcquisitionMethod.Legacy | TerrainAcquisitionMethod.Template | TerrainAcquisitionMethod.Generate | TerrainAcquisitionMethod.Import | TerrainAcquisitionMethod.Convert | TerrainAcquisitionMethod.EditAddTool | TerrainAcquisitionMethod.EditSeaLevelTool | TerrainAcquisitionMethod.EditReplaceTool | TerrainAcquisitionMethod.RegionFillTool | TerrainAcquisitionMethod.RegionPasteTool | TerrainAcquisitionMethod.Other;
27610
28364
  /**
@@ -27639,6 +28393,8 @@ declare namespace Enum {
27639
28393
  }
27640
28394
  export const Bottom: Bottom;
27641
28395
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TerrainFace>;
28396
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TerrainFace | undefined;
28397
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TerrainFace | undefined;
27642
28398
  }
27643
28399
  export type TerrainFace = TerrainFace.Top | TerrainFace.Side | TerrainFace.Bottom;
27644
28400
  /**
@@ -27745,6 +28501,8 @@ declare namespace Enum {
27745
28501
  }
27746
28502
  export const ModerationTimeout: ModerationTimeout;
27747
28503
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TextChatMessageStatus>;
28504
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TextChatMessageStatus | undefined;
28505
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TextChatMessageStatus | undefined;
27748
28506
  }
27749
28507
  export type TextChatMessageStatus = TextChatMessageStatus.Unknown | TextChatMessageStatus.Success | TextChatMessageStatus.Sending | TextChatMessageStatus.TextFilterFailed | TextChatMessageStatus.Floodchecked | TextChatMessageStatus.InvalidPrivacySettings | TextChatMessageStatus.InvalidTextChannelPermissions | TextChatMessageStatus.MessageTooLong | TextChatMessageStatus.ModerationTimeout;
27750
28508
  /**
@@ -27779,6 +28537,8 @@ declare namespace Enum {
27779
28537
  }
27780
28538
  export const RightToLeft: RightToLeft;
27781
28539
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TextDirection>;
28540
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TextDirection | undefined;
28541
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TextDirection | undefined;
27782
28542
  }
27783
28543
  export type TextDirection = TextDirection.Auto | TextDirection.LeftToRight | TextDirection.RightToLeft;
27784
28544
  /**
@@ -27804,6 +28564,8 @@ declare namespace Enum {
27804
28564
  }
27805
28565
  export const PrivateChat: PrivateChat;
27806
28566
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TextFilterContext>;
28567
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TextFilterContext | undefined;
28568
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TextFilterContext | undefined;
27807
28569
  }
27808
28570
  export type TextFilterContext = TextFilterContext.PublicChat | TextFilterContext.PrivateChat;
27809
28571
  /**
@@ -27892,6 +28654,8 @@ declare namespace Enum {
27892
28654
  }
27893
28655
  export const OneTimePassword: OneTimePassword;
27894
28656
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TextInputType>;
28657
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TextInputType | undefined;
28658
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TextInputType | undefined;
27895
28659
  }
27896
28660
  export type TextInputType = TextInputType.Default | TextInputType.NoSuggestions | TextInputType.Number | TextInputType.Email | TextInputType.Phone | TextInputType.Password | TextInputType.PasswordShown | TextInputType.Username | TextInputType.OneTimePassword;
27897
28661
  /**
@@ -27934,6 +28698,8 @@ declare namespace Enum {
27934
28698
  }
27935
28699
  export const SplitWord: SplitWord;
27936
28700
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TextTruncate>;
28701
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TextTruncate | undefined;
28702
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TextTruncate | undefined;
27937
28703
  }
27938
28704
  export type TextTruncate = TextTruncate.None | TextTruncate.AtEnd | TextTruncate.SplitWord;
27939
28705
  /**
@@ -27976,6 +28742,8 @@ declare namespace Enum {
27976
28742
  }
27977
28743
  export const Center: Center;
27978
28744
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TextXAlignment>;
28745
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TextXAlignment | undefined;
28746
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TextXAlignment | undefined;
27979
28747
  }
27980
28748
  export type TextXAlignment = TextXAlignment.Left | TextXAlignment.Right | TextXAlignment.Center;
27981
28749
  /**
@@ -28018,6 +28786,8 @@ declare namespace Enum {
28018
28786
  }
28019
28787
  export const Bottom: Bottom;
28020
28788
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TextYAlignment>;
28789
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TextYAlignment | undefined;
28790
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TextYAlignment | undefined;
28021
28791
  }
28022
28792
  export type TextYAlignment = TextYAlignment.Top | TextYAlignment.Center | TextYAlignment.Bottom;
28023
28793
  /**
@@ -28060,6 +28830,8 @@ declare namespace Enum {
28060
28830
  }
28061
28831
  export const Static: Static;
28062
28832
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TextureMode>;
28833
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TextureMode | undefined;
28834
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TextureMode | undefined;
28063
28835
  }
28064
28836
  export type TextureMode = TextureMode.Stretch | TextureMode.Wrap | TextureMode.Static;
28065
28837
  /**
@@ -28113,6 +28885,8 @@ declare namespace Enum {
28113
28885
  }
28114
28886
  export const HumanoidOrphaned: HumanoidOrphaned;
28115
28887
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TextureQueryType>;
28888
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TextureQueryType | undefined;
28889
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TextureQueryType | undefined;
28116
28890
  }
28117
28891
  export type TextureQueryType = TextureQueryType.NonHumanoid | TextureQueryType.NonHumanoidOrphaned | TextureQueryType.Humanoid | TextureQueryType.HumanoidOrphaned;
28118
28892
  /**
@@ -28247,6 +29021,8 @@ declare namespace Enum {
28247
29021
  }
28248
29022
  export const Threads16: Threads16;
28249
29023
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ThreadPoolConfig>;
29024
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ThreadPoolConfig | undefined;
29025
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ThreadPoolConfig | undefined;
28250
29026
  }
28251
29027
  export type ThreadPoolConfig = ThreadPoolConfig.PerCore4 | ThreadPoolConfig.PerCore3 | ThreadPoolConfig.PerCore2 | ThreadPoolConfig.PerCore1 | ThreadPoolConfig.Auto | ThreadPoolConfig.Threads1 | ThreadPoolConfig.Threads2 | ThreadPoolConfig.Threads3 | ThreadPoolConfig.Threads4 | ThreadPoolConfig.Threads8 | ThreadPoolConfig.Threads16;
28252
29028
  /**
@@ -28289,6 +29065,8 @@ declare namespace Enum {
28289
29065
  }
28290
29066
  export const Default: Default;
28291
29067
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ThrottlingPriority>;
29068
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ThrottlingPriority | undefined;
29069
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ThrottlingPriority | undefined;
28292
29070
  }
28293
29071
  export type ThrottlingPriority = ThrottlingPriority.Extreme | ThrottlingPriority.ElevatedOnServer | ThrottlingPriority.Default;
28294
29072
  /**
@@ -28373,6 +29151,8 @@ declare namespace Enum {
28373
29151
  }
28374
29152
  export const Size352x352: Size352x352;
28375
29153
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ThumbnailSize>;
29154
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ThumbnailSize | undefined;
29155
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ThumbnailSize | undefined;
28376
29156
  }
28377
29157
  export type ThumbnailSize = ThumbnailSize.Size48x48 | ThumbnailSize.Size180x180 | ThumbnailSize.Size420x420 | ThumbnailSize.Size60x60 | ThumbnailSize.Size100x100 | ThumbnailSize.Size150x150 | ThumbnailSize.Size352x352;
28378
29158
  /**
@@ -28413,6 +29193,8 @@ declare namespace Enum {
28413
29193
  }
28414
29194
  export const AvatarThumbnail: AvatarThumbnail;
28415
29195
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ThumbnailType>;
29196
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ThumbnailType | undefined;
29197
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ThumbnailType | undefined;
28416
29198
  }
28417
29199
  export type ThumbnailType = ThumbnailType.HeadShot | ThumbnailType.AvatarBust | ThumbnailType.AvatarThumbnail;
28418
29200
  /**
@@ -28455,6 +29237,8 @@ declare namespace Enum {
28455
29237
  }
28456
29238
  export const Precise: Precise;
28457
29239
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TickCountSampleMethod>;
29240
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TickCountSampleMethod | undefined;
29241
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TickCountSampleMethod | undefined;
28458
29242
  }
28459
29243
  export type TickCountSampleMethod = TickCountSampleMethod.Fast | TickCountSampleMethod.Benchmark | TickCountSampleMethod.Precise;
28460
29244
  /**
@@ -28484,6 +29268,8 @@ declare namespace Enum {
28484
29268
  }
28485
29269
  export const Retro: Retro;
28486
29270
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TonemapperPreset>;
29271
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TonemapperPreset | undefined;
29272
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TonemapperPreset | undefined;
28487
29273
  }
28488
29274
  export type TonemapperPreset = TonemapperPreset.Default | TonemapperPreset.Retro;
28489
29275
  /**
@@ -28526,6 +29312,8 @@ declare namespace Enum {
28526
29312
  }
28527
29313
  export const Bottom: Bottom;
28528
29314
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TopBottom>;
29315
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TopBottom | undefined;
29316
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TopBottom | undefined;
28529
29317
  }
28530
29318
  export type TopBottom = TopBottom.Top | TopBottom.Center | TopBottom.Bottom;
28531
29319
  /**
@@ -28579,6 +29367,8 @@ declare namespace Enum {
28579
29367
  }
28580
29368
  export const Orbital: Orbital;
28581
29369
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TouchCameraMovementMode>;
29370
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TouchCameraMovementMode | undefined;
29371
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TouchCameraMovementMode | undefined;
28582
29372
  }
28583
29373
  export type TouchCameraMovementMode = TouchCameraMovementMode.Default | TouchCameraMovementMode.Classic | TouchCameraMovementMode.Follow | TouchCameraMovementMode.Orbital;
28584
29374
  /**
@@ -28654,6 +29444,8 @@ declare namespace Enum {
28654
29444
  }
28655
29445
  export const DynamicThumbstick: DynamicThumbstick;
28656
29446
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TouchMovementMode>;
29447
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TouchMovementMode | undefined;
29448
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TouchMovementMode | undefined;
28657
29449
  }
28658
29450
  export type TouchMovementMode = TouchMovementMode.Default | TouchMovementMode.Thumbstick | TouchMovementMode.DPad | TouchMovementMode.Thumbpad | TouchMovementMode.ClickToMove | TouchMovementMode.DynamicThumbstick;
28659
29451
  /**
@@ -28760,6 +29552,8 @@ declare namespace Enum {
28760
29552
  }
28761
29553
  export const UnsupportedDevice: UnsupportedDevice;
28762
29554
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TrackerError>;
29555
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TrackerError | undefined;
29556
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TrackerError | undefined;
28763
29557
  }
28764
29558
  export type TrackerError = TrackerError.Ok | TrackerError.NoService | TrackerError.InitFailed | TrackerError.NoVideo | TrackerError.VideoError | TrackerError.VideoNoPermission | TrackerError.VideoUnsupported | TrackerError.NoAudio | TrackerError.AudioError | TrackerError.AudioNoPermission | TrackerError.UnsupportedDevice;
28765
29559
  /**
@@ -28803,6 +29597,8 @@ declare namespace Enum {
28803
29597
  }
28804
29598
  export const ExtrapolateFacsOnly: ExtrapolateFacsOnly;
28805
29599
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TrackerExtrapolationFlagMode>;
29600
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TrackerExtrapolationFlagMode | undefined;
29601
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TrackerExtrapolationFlagMode | undefined;
28806
29602
  }
28807
29603
  export type TrackerExtrapolationFlagMode = TrackerExtrapolationFlagMode.Auto | TrackerExtrapolationFlagMode.ForceDisabled | TrackerExtrapolationFlagMode.ExtrapolateFacsAndPose | TrackerExtrapolationFlagMode.ExtrapolateFacsOnly;
28808
29604
  /**
@@ -28873,6 +29669,8 @@ declare namespace Enum {
28873
29669
  }
28874
29670
  export const FaceTrackingUninitialized: FaceTrackingUninitialized;
28875
29671
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TrackerFaceTrackingStatus>;
29672
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TrackerFaceTrackingStatus | undefined;
29673
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TrackerFaceTrackingStatus | undefined;
28876
29674
  }
28877
29675
  export type TrackerFaceTrackingStatus = TrackerFaceTrackingStatus.FaceTrackingSuccess | TrackerFaceTrackingStatus.FaceTrackingNoFaceFound | TrackerFaceTrackingStatus.FaceTrackingUnknown | TrackerFaceTrackingStatus.FaceTrackingLost | TrackerFaceTrackingStatus.FaceTrackingHasTrackingError | TrackerFaceTrackingStatus.FaceTrackingIsOccluded | TrackerFaceTrackingStatus.FaceTrackingUninitialized;
28878
29676
  /**
@@ -28907,6 +29705,8 @@ declare namespace Enum {
28907
29705
  }
28908
29706
  export const ForceTrue: ForceTrue;
28909
29707
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TrackerLodFlagMode>;
29708
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TrackerLodFlagMode | undefined;
29709
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TrackerLodFlagMode | undefined;
28910
29710
  }
28911
29711
  export type TrackerLodFlagMode = TrackerLodFlagMode.Auto | TrackerLodFlagMode.ForceFalse | TrackerLodFlagMode.ForceTrue;
28912
29712
  /**
@@ -28941,6 +29741,8 @@ declare namespace Enum {
28941
29741
  }
28942
29742
  export const Force1: Force1;
28943
29743
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TrackerLodValueMode>;
29744
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TrackerLodValueMode | undefined;
29745
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TrackerLodValueMode | undefined;
28944
29746
  }
28945
29747
  export type TrackerLodValueMode = TrackerLodValueMode.Auto | TrackerLodValueMode.Force0 | TrackerLodValueMode.Force1;
28946
29748
  /**
@@ -28984,6 +29786,8 @@ declare namespace Enum {
28984
29786
  }
28985
29787
  export const AudioVideo: AudioVideo;
28986
29788
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TrackerMode>;
29789
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TrackerMode | undefined;
29790
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TrackerMode | undefined;
28987
29791
  }
28988
29792
  export type TrackerMode = TrackerMode.None | TrackerMode.Audio | TrackerMode.Video | TrackerMode.AudioVideo;
28989
29793
  /**
@@ -29000,6 +29804,8 @@ declare namespace Enum {
29000
29804
  }
29001
29805
  export const LODCameraRecommendDisable: LODCameraRecommendDisable;
29002
29806
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TrackerPromptEvent>;
29807
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TrackerPromptEvent | undefined;
29808
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TrackerPromptEvent | undefined;
29003
29809
  }
29004
29810
  export type TrackerPromptEvent = TrackerPromptEvent.LODCameraRecommendDisable;
29005
29811
  /**
@@ -29034,6 +29840,8 @@ declare namespace Enum {
29034
29840
  }
29035
29841
  export const UpperBody: UpperBody;
29036
29842
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TrackerType>;
29843
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TrackerType | undefined;
29844
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TrackerType | undefined;
29037
29845
  }
29038
29846
  export type TrackerType = TrackerType.None | TrackerType.Face | TrackerType.UpperBody;
29039
29847
  /**
@@ -29068,6 +29876,8 @@ declare namespace Enum {
29068
29876
  }
29069
29877
  export const Unknown: Unknown;
29070
29878
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TriStateBoolean>;
29879
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TriStateBoolean | undefined;
29880
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TriStateBoolean | undefined;
29071
29881
  }
29072
29882
  export type TriStateBoolean = TriStateBoolean.False | TriStateBoolean.True | TriStateBoolean.Unknown;
29073
29883
  /**
@@ -29099,6 +29909,8 @@ declare namespace Enum {
29099
29909
  }
29100
29910
  export const Completed: Completed;
29101
29911
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TweenStatus>;
29912
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TweenStatus | undefined;
29913
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TweenStatus | undefined;
29102
29914
  }
29103
29915
  export type TweenStatus = TweenStatus.Canceled | TweenStatus.Completed;
29104
29916
  /**
@@ -29141,6 +29953,8 @@ declare namespace Enum {
29141
29953
  }
29142
29954
  export const HitPoint: HitPoint;
29143
29955
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.UIDragDetectorBoundingBehavior>;
29956
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.UIDragDetectorBoundingBehavior | undefined;
29957
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.UIDragDetectorBoundingBehavior | undefined;
29144
29958
  }
29145
29959
  export type UIDragDetectorBoundingBehavior = UIDragDetectorBoundingBehavior.Automatic | UIDragDetectorBoundingBehavior.EntireObject | UIDragDetectorBoundingBehavior.HitPoint;
29146
29960
  /**
@@ -29172,6 +29986,8 @@ declare namespace Enum {
29172
29986
  }
29173
29987
  export const Relative: Relative;
29174
29988
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.UIDragDetectorDragRelativity>;
29989
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.UIDragDetectorDragRelativity | undefined;
29990
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.UIDragDetectorDragRelativity | undefined;
29175
29991
  }
29176
29992
  export type UIDragDetectorDragRelativity = UIDragDetectorDragRelativity.Absolute | UIDragDetectorDragRelativity.Relative;
29177
29993
  /**
@@ -29214,6 +30030,8 @@ declare namespace Enum {
29214
30030
  }
29215
30031
  export const Reference: Reference;
29216
30032
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.UIDragDetectorDragSpace>;
30033
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.UIDragDetectorDragSpace | undefined;
30034
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.UIDragDetectorDragSpace | undefined;
29217
30035
  }
29218
30036
  export type UIDragDetectorDragSpace = UIDragDetectorDragSpace.Parent | UIDragDetectorDragSpace.LayerCollector | UIDragDetectorDragSpace.Reference;
29219
30037
  /**
@@ -29267,6 +30085,8 @@ declare namespace Enum {
29267
30085
  }
29268
30086
  export const Scriptable: Scriptable;
29269
30087
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.UIDragDetectorDragStyle>;
30088
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.UIDragDetectorDragStyle | undefined;
30089
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.UIDragDetectorDragStyle | undefined;
29270
30090
  }
29271
30091
  export type UIDragDetectorDragStyle = UIDragDetectorDragStyle.TranslatePlane | UIDragDetectorDragStyle.TranslateLine | UIDragDetectorDragStyle.Rotate | UIDragDetectorDragStyle.Scriptable;
29272
30092
  /**
@@ -29320,6 +30140,8 @@ declare namespace Enum {
29320
30140
  }
29321
30141
  export const CustomScale: CustomScale;
29322
30142
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.UIDragDetectorResponseStyle>;
30143
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.UIDragDetectorResponseStyle | undefined;
30144
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.UIDragDetectorResponseStyle | undefined;
29323
30145
  }
29324
30146
  export type UIDragDetectorResponseStyle = UIDragDetectorResponseStyle.Offset | UIDragDetectorResponseStyle.Scale | UIDragDetectorResponseStyle.CustomOffset | UIDragDetectorResponseStyle.CustomScale;
29325
30147
  /**
@@ -29362,6 +30184,8 @@ declare namespace Enum {
29362
30184
  }
29363
30185
  export const YY: YY;
29364
30186
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.UIDragSpeedAxisMapping>;
30187
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.UIDragSpeedAxisMapping | undefined;
30188
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.UIDragSpeedAxisMapping | undefined;
29365
30189
  }
29366
30190
  export type UIDragSpeedAxisMapping = UIDragSpeedAxisMapping.XY | UIDragSpeedAxisMapping.XX | UIDragSpeedAxisMapping.YY;
29367
30191
  /**
@@ -29426,6 +30250,8 @@ declare namespace Enum {
29426
30250
  }
29427
30251
  export const SpaceEvenly: SpaceEvenly;
29428
30252
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.UIFlexAlignment>;
30253
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.UIFlexAlignment | undefined;
30254
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.UIFlexAlignment | undefined;
29429
30255
  }
29430
30256
  export type UIFlexAlignment = UIFlexAlignment.None | UIFlexAlignment.Fill | UIFlexAlignment.SpaceAround | UIFlexAlignment.SpaceBetween | UIFlexAlignment.SpaceEvenly;
29431
30257
  /**
@@ -29490,6 +30316,8 @@ declare namespace Enum {
29490
30316
  }
29491
30317
  export const Custom: Custom;
29492
30318
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.UIFlexMode>;
30319
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.UIFlexMode | undefined;
30320
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.UIFlexMode | undefined;
29493
30321
  }
29494
30322
  export type UIFlexMode = UIFlexMode.None | UIFlexMode.Grow | UIFlexMode.Shrink | UIFlexMode.Fill | UIFlexMode.Custom;
29495
30323
  /**
@@ -29519,6 +30347,8 @@ declare namespace Enum {
29519
30347
  }
29520
30348
  export const Dark: Dark;
29521
30349
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.UITheme>;
30350
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.UITheme | undefined;
30351
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.UITheme | undefined;
29522
30352
  }
29523
30353
  export type UITheme = UITheme.Light | UITheme.Dark;
29524
30354
  /**
@@ -29550,6 +30380,8 @@ declare namespace Enum {
29550
30380
  }
29551
30381
  export const UiMessageInfo: UiMessageInfo;
29552
30382
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.UiMessageType>;
30383
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.UiMessageType | undefined;
30384
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.UiMessageType | undefined;
29553
30385
  }
29554
30386
  export type UiMessageType = UiMessageType.UiMessageError | UiMessageType.UiMessageInfo;
29555
30387
  /**
@@ -29575,6 +30407,8 @@ declare namespace Enum {
29575
30407
  }
29576
30408
  export const Preview: Preview;
29577
30409
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.UsageContext>;
30410
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.UsageContext | undefined;
30411
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.UsageContext | undefined;
29578
30412
  }
29579
30413
  export type UsageContext = UsageContext.Default | UsageContext.Preview;
29580
30414
  /**
@@ -29626,6 +30460,8 @@ declare namespace Enum {
29626
30460
  }
29627
30461
  export const Floor: Floor;
29628
30462
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.UserCFrame>;
30463
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.UserCFrame | undefined;
30464
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.UserCFrame | undefined;
29629
30465
  }
29630
30466
  export type UserCFrame = UserCFrame.Head | UserCFrame.LeftHand | UserCFrame.RightHand | UserCFrame.Floor;
29631
30467
  /**
@@ -29690,6 +30526,8 @@ declare namespace Enum {
29690
30526
  }
29691
30527
  export const None: None;
29692
30528
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.UserInputState>;
30529
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.UserInputState | undefined;
30530
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.UserInputState | undefined;
29693
30531
  }
29694
30532
  export type UserInputState = UserInputState.Begin | UserInputState.Change | UserInputState.End | UserInputState.Cancel | UserInputState.None;
29695
30533
  /**
@@ -29930,6 +30768,8 @@ declare namespace Enum {
29930
30768
  }
29931
30769
  export const None: None;
29932
30770
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.UserInputType>;
30771
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.UserInputType | undefined;
30772
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.UserInputType | undefined;
29933
30773
  }
29934
30774
  export type UserInputType = UserInputType.MouseButton1 | UserInputType.MouseButton2 | UserInputType.MouseButton3 | UserInputType.MouseWheel | UserInputType.MouseMovement | UserInputType.Touch | UserInputType.Keyboard | UserInputType.Focus | UserInputType.Accelerometer | UserInputType.Gyro | UserInputType.Gamepad1 | UserInputType.Gamepad2 | UserInputType.Gamepad3 | UserInputType.Gamepad4 | UserInputType.Gamepad5 | UserInputType.Gamepad6 | UserInputType.Gamepad7 | UserInputType.Gamepad8 | UserInputType.TextInput | UserInputType.InputMethod | UserInputType.None;
29935
30775
  /**
@@ -29973,6 +30813,8 @@ declare namespace Enum {
29973
30813
  }
29974
30814
  export const Custom: Custom;
29975
30815
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VRComfortSetting>;
30816
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VRComfortSetting | undefined;
30817
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VRComfortSetting | undefined;
29976
30818
  }
29977
30819
  export type VRComfortSetting = VRComfortSetting.Comfort | VRComfortSetting.Normal | VRComfortSetting.Expert | VRComfortSetting.Custom;
29978
30820
  /**
@@ -29998,6 +30840,8 @@ declare namespace Enum {
29998
30840
  }
29999
30841
  export const Transparent: Transparent;
30000
30842
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VRControllerModelMode>;
30843
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VRControllerModelMode | undefined;
30844
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VRControllerModelMode | undefined;
30001
30845
  }
30002
30846
  export type VRControllerModelMode = VRControllerModelMode.Disabled | VRControllerModelMode.Transparent;
30003
30847
  /**
@@ -30050,6 +30894,8 @@ declare namespace Enum {
30050
30894
  }
30051
30895
  export const OculusQuest: OculusQuest;
30052
30896
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VRDeviceType>;
30897
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VRDeviceType | undefined;
30898
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VRDeviceType | undefined;
30053
30899
  }
30054
30900
  export type VRDeviceType = VRDeviceType.Unknown | VRDeviceType.OculusRift | VRDeviceType.HTCVive | VRDeviceType.ValveIndex | VRDeviceType.OculusQuest;
30055
30901
  /**
@@ -30084,6 +30930,8 @@ declare namespace Enum {
30084
30930
  }
30085
30931
  export const DualPointer: DualPointer;
30086
30932
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VRLaserPointerMode>;
30933
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VRLaserPointerMode | undefined;
30934
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VRLaserPointerMode | undefined;
30087
30935
  }
30088
30936
  export type VRLaserPointerMode = VRLaserPointerMode.Disabled | VRLaserPointerMode.Pointer | VRLaserPointerMode.DualPointer;
30089
30937
  /**
@@ -30118,6 +30966,8 @@ declare namespace Enum {
30118
30966
  }
30119
30967
  export const Anyone: Anyone;
30120
30968
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VRSafetyBubbleMode>;
30969
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VRSafetyBubbleMode | undefined;
30970
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VRSafetyBubbleMode | undefined;
30121
30971
  }
30122
30972
  export type VRSafetyBubbleMode = VRSafetyBubbleMode.NoOne | VRSafetyBubbleMode.OnlyFriends | VRSafetyBubbleMode.Anyone;
30123
30973
  /**
@@ -30147,6 +30997,8 @@ declare namespace Enum {
30147
30997
  }
30148
30998
  export const Off: Off;
30149
30999
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VRScaling>;
31000
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VRScaling | undefined;
31001
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VRScaling | undefined;
30150
31002
  }
30151
31003
  export type VRScaling = VRScaling.World | VRScaling.Off;
30152
31004
  /**
@@ -30199,6 +31051,8 @@ declare namespace Enum {
30199
31051
  }
30200
31052
  export const Stopping: Stopping;
30201
31053
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VRSessionState>;
31054
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VRSessionState | undefined;
31055
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VRSessionState | undefined;
30202
31056
  }
30203
31057
  export type VRSessionState = VRSessionState.Undefined | VRSessionState.Idle | VRSessionState.Visible | VRSessionState.Focused | VRSessionState.Stopping;
30204
31058
  /**
@@ -30230,6 +31084,8 @@ declare namespace Enum {
30230
31084
  }
30231
31085
  export const Right: Right;
30232
31086
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VRTouchpad>;
31087
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VRTouchpad | undefined;
31088
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VRTouchpad | undefined;
30233
31089
  }
30234
31090
  export type VRTouchpad = VRTouchpad.Left | VRTouchpad.Right;
30235
31091
  /**
@@ -30272,6 +31128,8 @@ declare namespace Enum {
30272
31128
  }
30273
31129
  export const ABXY: ABXY;
30274
31130
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VRTouchpadMode>;
31131
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VRTouchpadMode | undefined;
31132
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VRTouchpadMode | undefined;
30275
31133
  }
30276
31134
  export type VRTouchpadMode = VRTouchpadMode.Touch | VRTouchpadMode.VirtualThumbstick | VRTouchpadMode.ABXY;
30277
31135
  /**
@@ -30326,6 +31184,8 @@ declare namespace Enum {
30326
31184
  }
30327
31185
  export const Vector: Vector;
30328
31186
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VelocityConstraintMode>;
31187
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VelocityConstraintMode | undefined;
31188
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VelocityConstraintMode | undefined;
30329
31189
  }
30330
31190
  export type VelocityConstraintMode = VelocityConstraintMode.Line | VelocityConstraintMode.Plane | VelocityConstraintMode.Vector;
30331
31191
  /**
@@ -30368,6 +31228,8 @@ declare namespace Enum {
30368
31228
  }
30369
31229
  export const Bottom: Bottom;
30370
31230
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VerticalAlignment>;
31231
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VerticalAlignment | undefined;
31232
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VerticalAlignment | undefined;
30371
31233
  }
30372
31234
  export type VerticalAlignment = VerticalAlignment.Center | VerticalAlignment.Top | VerticalAlignment.Bottom;
30373
31235
  /**
@@ -30399,6 +31261,8 @@ declare namespace Enum {
30399
31261
  }
30400
31262
  export const Left: Left;
30401
31263
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VerticalScrollBarPosition>;
31264
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VerticalScrollBarPosition | undefined;
31265
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VerticalScrollBarPosition | undefined;
30402
31266
  }
30403
31267
  export type VerticalScrollBarPosition = VerticalScrollBarPosition.Right | VerticalScrollBarPosition.Left;
30404
31268
  /**
@@ -30474,6 +31338,8 @@ declare namespace Enum {
30474
31338
  }
30475
31339
  export const RightHand: RightHand;
30476
31340
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VibrationMotor>;
31341
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VibrationMotor | undefined;
31342
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VibrationMotor | undefined;
30477
31343
  }
30478
31344
  export type VibrationMotor = VibrationMotor.Large | VibrationMotor.Small | VibrationMotor.LeftTrigger | VibrationMotor.RightTrigger | VibrationMotor.LeftHand | VibrationMotor.RightHand;
30479
31345
  /**
@@ -30517,6 +31383,8 @@ declare namespace Enum {
30517
31383
  }
30518
31384
  export const High: High;
30519
31385
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VideoDeviceCaptureQuality>;
31386
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VideoDeviceCaptureQuality | undefined;
31387
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VideoDeviceCaptureQuality | undefined;
30520
31388
  }
30521
31389
  export type VideoDeviceCaptureQuality = VideoDeviceCaptureQuality.Default | VideoDeviceCaptureQuality.Low | VideoDeviceCaptureQuality.Medium | VideoDeviceCaptureQuality.High;
30522
31390
  /**
@@ -30695,6 +31563,8 @@ declare namespace Enum {
30695
31563
  }
30696
31564
  export const Unknown: Unknown;
30697
31565
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VideoError>;
31566
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VideoError | undefined;
31567
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VideoError | undefined;
30698
31568
  }
30699
31569
  export type VideoError = VideoError.Ok | VideoError.Eof | VideoError.EAgain | VideoError.BadParameter | VideoError.AllocFailed | VideoError.CodecInitFailed | VideoError.CodecCloseFailed | VideoError.DecodeFailed | VideoError.ParsingFailed | VideoError.Unsupported | VideoError.Generic | VideoError.DownloadFailed | VideoError.StreamNotFound | VideoError.EncodeFailed | VideoError.CreateFailed | VideoError.NoPermission | VideoError.NoService | VideoError.ReleaseFailed | VideoError.Unknown;
30700
31570
  /**
@@ -30738,6 +31608,8 @@ declare namespace Enum {
30738
31608
  }
30739
31609
  export const Decal: Decal;
30740
31610
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ViewMode>;
31611
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ViewMode | undefined;
31612
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ViewMode | undefined;
30741
31613
  }
30742
31614
  export type ViewMode = ViewMode.None | ViewMode.GeometryComplexity | ViewMode.Transparent | ViewMode.Decal;
30743
31615
  /**
@@ -30780,6 +31652,8 @@ declare namespace Enum {
30780
31652
  }
30781
31653
  export const Enabled: Enabled;
30782
31654
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VirtualCursorMode>;
31655
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VirtualCursorMode | undefined;
31656
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VirtualCursorMode | undefined;
30783
31657
  }
30784
31658
  export type VirtualCursorMode = VirtualCursorMode.Default | VirtualCursorMode.Disabled | VirtualCursorMode.Enabled;
30785
31659
  /**
@@ -30814,6 +31688,8 @@ declare namespace Enum {
30814
31688
  }
30815
31689
  export const Playing: Playing;
30816
31690
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VirtualInputMode>;
31691
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VirtualInputMode | undefined;
31692
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VirtualInputMode | undefined;
30817
31693
  }
30818
31694
  export type VirtualInputMode = VirtualInputMode.None | VirtualInputMode.Recording | VirtualInputMode.Playing;
30819
31695
  /**
@@ -30884,6 +31760,8 @@ declare namespace Enum {
30884
31760
  }
30885
31761
  export const Failed: Failed;
30886
31762
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VoiceChatState>;
31763
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VoiceChatState | undefined;
31764
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VoiceChatState | undefined;
30887
31765
  }
30888
31766
  export type VoiceChatState = VoiceChatState.Idle | VoiceChatState.Joining | VoiceChatState.JoiningRetry | VoiceChatState.Joined | VoiceChatState.Leaving | VoiceChatState.Ended | VoiceChatState.Failed;
30889
31767
  /**
@@ -30918,6 +31796,8 @@ declare namespace Enum {
30918
31796
  }
30919
31797
  export const Join: Join;
30920
31798
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VoiceControlPath>;
31799
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VoiceControlPath | undefined;
31800
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VoiceControlPath | undefined;
30921
31801
  }
30922
31802
  export type VoiceControlPath = VoiceControlPath.Publish | VoiceControlPath.Subscribe | VoiceControlPath.Join;
30923
31803
  /**
@@ -30952,6 +31832,8 @@ declare namespace Enum {
30952
31832
  }
30953
31833
  export const Enabled: Enabled;
30954
31834
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VolumetricAudio>;
31835
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VolumetricAudio | undefined;
31836
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VolumetricAudio | undefined;
30955
31837
  }
30956
31838
  export type VolumetricAudio = VolumetricAudio.Disabled | VolumetricAudio.Automatic | VolumetricAudio.Enabled;
30957
31839
  /**
@@ -31015,6 +31897,8 @@ declare namespace Enum {
31015
31897
  }
31016
31898
  export const Z: Z;
31017
31899
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.WaterDirection>;
31900
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.WaterDirection | undefined;
31901
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.WaterDirection | undefined;
31018
31902
  }
31019
31903
  export type WaterDirection = WaterDirection.NegX | WaterDirection.X | WaterDirection.NegY | WaterDirection.Y | WaterDirection.NegZ | WaterDirection.Z;
31020
31904
  /**
@@ -31069,6 +31953,8 @@ declare namespace Enum {
31069
31953
  }
31070
31954
  export const Max: Max;
31071
31955
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.WaterForce>;
31956
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.WaterForce | undefined;
31957
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.WaterForce | undefined;
31072
31958
  }
31073
31959
  export type WaterForce = WaterForce.None | WaterForce.Small | WaterForce.Medium | WaterForce.Strong | WaterForce.Max;
31074
31960
  /**
@@ -31109,6 +31995,8 @@ declare namespace Enum {
31109
31995
  }
31110
31996
  export const Touching: Touching;
31111
31997
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.WeldConstraintPreserve>;
31998
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.WeldConstraintPreserve | undefined;
31999
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.WeldConstraintPreserve | undefined;
31112
32000
  }
31113
32001
  export type WeldConstraintPreserve = WeldConstraintPreserve.All | WeldConstraintPreserve.None | WeldConstraintPreserve.Touching;
31114
32002
  /**
@@ -31134,6 +32022,8 @@ declare namespace Enum {
31134
32022
  }
31135
32023
  export const NoOne: NoOne;
31136
32024
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.WhisperChatPrivacyMode>;
32025
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.WhisperChatPrivacyMode | undefined;
32026
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.WhisperChatPrivacyMode | undefined;
31137
32027
  }
31138
32028
  export type WhisperChatPrivacyMode = WhisperChatPrivacyMode.AllUsers | WhisperChatPrivacyMode.NoOne;
31139
32029
  /**
@@ -31168,6 +32058,8 @@ declare namespace Enum {
31168
32058
  }
31169
32059
  export const EnabledOverride: EnabledOverride;
31170
32060
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.WrapLayerAutoSkin>;
32061
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.WrapLayerAutoSkin | undefined;
32062
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.WrapLayerAutoSkin | undefined;
31171
32063
  }
31172
32064
  export type WrapLayerAutoSkin = WrapLayerAutoSkin.Disabled | WrapLayerAutoSkin.EnabledPreserve | WrapLayerAutoSkin.EnabledOverride;
31173
32065
  /**
@@ -31317,6 +32209,8 @@ declare namespace Enum {
31317
32209
  }
31318
32210
  export const LayerCageFittedToPrev: LayerCageFittedToPrev;
31319
32211
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.WrapLayerDebugMode>;
32212
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.WrapLayerDebugMode | undefined;
32213
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.WrapLayerDebugMode | undefined;
31320
32214
  }
31321
32215
  export type WrapLayerDebugMode = WrapLayerDebugMode.None | WrapLayerDebugMode.BoundCage | WrapLayerDebugMode.LayerCage | WrapLayerDebugMode.BoundCageAndLinks | WrapLayerDebugMode.Reference | WrapLayerDebugMode.Rbf | WrapLayerDebugMode.OuterCage | WrapLayerDebugMode.ReferenceMeshAfterMorph | WrapLayerDebugMode.HSROuterDetail | WrapLayerDebugMode.HSROuter | WrapLayerDebugMode.HSRInner | WrapLayerDebugMode.HSRInnerReverse | WrapLayerDebugMode.LayerCageFittedToBase | WrapLayerDebugMode.LayerCageFittedToPrev;
31322
32216
  /**
@@ -31423,6 +32317,8 @@ declare namespace Enum {
31423
32317
  }
31424
32318
  export const OuterCageDetail: OuterCageDetail;
31425
32319
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.WrapTargetDebugMode>;
32320
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.WrapTargetDebugMode | undefined;
32321
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.WrapTargetDebugMode | undefined;
31426
32322
  }
31427
32323
  export type WrapTargetDebugMode = WrapTargetDebugMode.None | WrapTargetDebugMode.TargetCageOriginal | WrapTargetDebugMode.TargetCageCompressed | WrapTargetDebugMode.TargetCageInterface | WrapTargetDebugMode.TargetLayerCageOriginal | WrapTargetDebugMode.TargetLayerCageCompressed | WrapTargetDebugMode.TargetLayerInterface | WrapTargetDebugMode.Rbf | WrapTargetDebugMode.OuterCageDetail;
31428
32324
  /**
@@ -31454,6 +32350,8 @@ declare namespace Enum {
31454
32350
  }
31455
32351
  export const Sibling: Sibling;
31456
32352
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ZIndexBehavior>;
32353
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ZIndexBehavior | undefined;
32354
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ZIndexBehavior | undefined;
31457
32355
  }
31458
32356
  export type ZIndexBehavior = ZIndexBehavior.Global | ZIndexBehavior.Sibling;
31459
32357
  }