@rbxts/types 1.0.806 → 1.0.808

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.
@@ -52,6 +52,7 @@ interface Services {
52
52
  DebuggerUIService: DebuggerUIService;
53
53
  DeviceIdService: DeviceIdService;
54
54
  DraggerService: DraggerService;
55
+ EditableService: EditableService;
55
56
  EventIngestService: EventIngestService;
56
57
  ExampleService: ExampleService;
57
58
  ExperienceAuthService: ExperienceAuthService;
@@ -298,6 +299,7 @@ interface CreatableInstances {
298
299
  FlangeSoundEffect: FlangeSoundEffect;
299
300
  FloatCurve: FloatCurve;
300
301
  FloorWire: FloorWire;
302
+ FluidForceSensor: FluidForceSensor;
301
303
  Folder: Folder;
302
304
  ForceField: ForceField;
303
305
  Frame: Frame;
@@ -11014,6 +11016,17 @@ interface RobloxEditableImage extends EditableImage {
11014
11016
  readonly _nominal_RobloxEditableImage: unique symbol;
11015
11017
  }
11016
11018
 
11019
+ interface EditableService extends Instance {
11020
+ /**
11021
+ * **DO NOT USE!**
11022
+ *
11023
+ * This field exists to force TypeScript to recognize this as a nominal type
11024
+ * @hidden
11025
+ * @deprecated
11026
+ */
11027
+ readonly _nominal_EditableService: unique symbol;
11028
+ }
11029
+
11017
11030
  /** A EulerRotation Curve represents a 3D rotation curve, it groups 3 [FloatCurves](https://developer.roblox.com/en-us/api-reference/class/FloatCurve), stored as 3 FloatCurve child instances. The rotation is decomposed in 3 Euler angles channels that can be accessed via [EulerRotationCurve:X](https://developer.roblox.com/en-us/api-reference/function/EulerRotationCurve/X), [EulerRotationCurve:Y](https://developer.roblox.com/en-us/api-reference/function/EulerRotationCurve/Y), [EulerRotationCurve:Z](https://developer.roblox.com/en-us/api-reference/function/EulerRotationCurve/Z) methods. The 3 axes can be sampled simultaneously via the method [EulerRotationCurve:GetAnglesAtTime](https://developer.roblox.com/en-us/api-reference/function/EulerRotationCurve/GetAnglesAtTime) returning the 3 Euler angles as a Vector3. Similarly, [EulerRotationCurve:GetRotationAtTime](https://developer.roblox.com/en-us/api-reference/function/EulerRotationCurve/GetRotationAtTime) samples all channels simultaneously but returns a CFrame rotated by X, Y, and Z according to the specified rotation order. */
11018
11031
  interface EulerRotationCurve extends Instance {
11019
11032
  /**
@@ -15839,10 +15852,12 @@ interface GuiService extends Instance {
15839
15852
  * Creates a gui selection group where gamepad gui navigation will only consider selectable gui objects that are within the group (children of selectionParent).
15840
15853
  *
15841
15854
  * A use case is you have a menu pop open, but there are other selectable objects on the screen (maybe from previous menus), but you want to the user to only be able to select gui objects in the new menu.
15855
+ * @deprecated Use `SelectionGroup` instead
15842
15856
  */
15843
15857
  AddSelectionParent(this: GuiService, selectionName: string, selectionParent: GuiObject): void;
15844
15858
  /**
15845
15859
  * Functions similarly to [GuiService:AddSelectionParent](https://developer.roblox.com/en-us/api-reference/function/GuiService/AddSelectionParent), but you can give it a tuple of [GuiObject](https://developer.roblox.com/en-us/api-reference/class/GuiObject) that you want to be contained in the group.
15860
+ * @deprecated Use `SelectionGroup` instead
15846
15861
  */
15847
15862
  AddSelectionTuple(this: GuiService, selectionName: string, selections: Array<GuiObject>): void;
15848
15863
  /**
@@ -15929,6 +15944,7 @@ interface GuiService extends Instance {
15929
15944
  IsTenFootInterface(this: GuiService): boolean;
15930
15945
  /**
15931
15946
  * Removes a group that was created with [GuiService:AddSelectionParent](https://developer.roblox.com/en-us/api-reference/function/GuiService/AddSelectionParent) or [GuiService:AddSelectionTuple](https://developer.roblox.com/en-us/api-reference/function/GuiService/AddSelectionTuple).
15947
+ * @deprecated Use `SelectionGroup` instead
15932
15948
  */
15933
15949
  RemoveSelectionGroup(this: GuiService, selectionName: string): void;
15934
15950
  Select(this: GuiService, selectionParent: Instance): void;
@@ -17347,11 +17363,7 @@ interface Humanoid extends Instance {
17347
17363
  * * [Humanoid.Sit](https://developer.roblox.com/en-us/api-reference/property/Humanoid/Sit), which indicates if a Humanoid is currently sitting
17348
17364
  * * [Humanoid.SeatPart](https://developer.roblox.com/en-us/api-reference/property/Humanoid/SeatPart), which indicates the seat a Humanoid is currently sitting in, if any.
17349
17365
  */
17350
- readonly Seated: RBXScriptSignal<
17351
- (
17352
- ...args: [active: true, currentSeatPart: Seat | VehicleSeat] | [active: false, currentSeatPart: undefined]
17353
- ) => void
17354
- >;
17366
+ readonly Seated: RBXScriptSignal<(active: boolean, currentSeatPart: Seat | VehicleSeat | undefined) => void>;
17355
17367
  /**
17356
17368
  * This event fires when the state of the [Humanoid](https://developer.roblox.com/en-us/api-reference/class/Humanoid) is changed.
17357
17369
  *
@@ -17471,6 +17483,8 @@ interface HumanoidDescription extends Instance {
17471
17483
  *
17472
17484
  * * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
17473
17485
  * * [FaceAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/FaceAccessory), [FrontAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/FrontAccessory), [HairAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HairAccessory), [HatAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HatAccessory), [NeckAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/NeckAccessory), [ShouldersAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/ShouldersAccessory) and [WaistAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/WaistAccessory), which are similar properties that apply accessories like this one
17486
+ *
17487
+ * Tags: NotReplicated
17474
17488
  */
17475
17489
  BackAccessory: string;
17476
17490
  /**
@@ -17540,6 +17554,8 @@ interface HumanoidDescription extends Instance {
17540
17554
  * * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
17541
17555
  * * [BackAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/BackAccessory), [FrontAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/FrontAccessory), [HairAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HairAccessory), [HatAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HatAccessory), [NeckAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/NeckAccessory), [ShouldersAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/ShouldersAccessory) and [WaistAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/WaistAccessory), which are similar properties that apply accessories like this one
17542
17556
  * * [Face](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Face), a property that determines what Face texture is used on the head
17557
+ *
17558
+ * Tags: NotReplicated
17543
17559
  */
17544
17560
  FaceAccessory: string;
17545
17561
  /**
@@ -17562,6 +17578,8 @@ interface HumanoidDescription extends Instance {
17562
17578
  *
17563
17579
  * * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
17564
17580
  * * [BackAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/BackAccessory), [FaceAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/FaceAccessory), [HairAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HairAccessory), [HatAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HatAccessory), [NeckAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/NeckAccessory), [ShouldersAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/ShouldersAccessory) and [WaistAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/WaistAccessory), which are similar properties that apply accessories like this one
17581
+ *
17582
+ * Tags: NotReplicated
17565
17583
  */
17566
17584
  FrontAccessory: string;
17567
17585
  /**
@@ -17587,6 +17605,8 @@ interface HumanoidDescription extends Instance {
17587
17605
  *
17588
17606
  * * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
17589
17607
  * * [BackAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/BackAccessory), [FaceAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/FaceAccessory), [FrontAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/FrontAccessory), [HatAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HatAccessory), [NeckAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/NeckAccessory), [ShouldersAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/ShouldersAccessory) and [WaistAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/WaistAccessory), which are similar properties that apply accessories like this one
17608
+ *
17609
+ * Tags: NotReplicated
17590
17610
  */
17591
17611
  HairAccessory: string;
17592
17612
  /**
@@ -17599,6 +17619,8 @@ interface HumanoidDescription extends Instance {
17599
17619
  *
17600
17620
  * * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
17601
17621
  * * [BackAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/BackAccessory), [FaceAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/FaceAccessory), [FrontAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/FrontAccessory), [HairAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HairAccessory), [NeckAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/NeckAccessory), [ShouldersAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/ShouldersAccessory) and [WaistAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/WaistAccessory), which are similar properties that apply accessories like this one
17622
+ *
17623
+ * Tags: NotReplicated
17602
17624
  */
17603
17625
  HatAccessory: string;
17604
17626
  /**
@@ -17611,6 +17633,8 @@ interface HumanoidDescription extends Instance {
17611
17633
  * * [Torso](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Torso), [RightArm](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightArm), [LeftArm](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftArm), [RightLeg](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightLeg) and [LeftLeg](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftLeg), which are similar properties that also control body part
17612
17634
  * * [HeadColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HeadColor), which controls the color of this limb
17613
17635
  * * [HatAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HatAccessory), [HairAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HairAccessory) and [FaceAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/FaceAccessory), which all can apply [Accessory](https://developer.roblox.com/en-us/api-reference/class/Accessory) objects which are joined to to the head
17636
+ *
17637
+ * Tags: NotReplicated
17614
17638
  */
17615
17639
  Head: number;
17616
17640
  /**
@@ -17623,6 +17647,8 @@ interface HumanoidDescription extends Instance {
17623
17647
  * * [TorsoColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/TorsoColor), [LeftArmColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftArmColor), [RightArmColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightArmColor), [LeftLegColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftLegColor), and [RightLegColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightLegColor), which are similar properties that also control body colors
17624
17648
  * * [Head](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Head), which controls the mesh used for the head
17625
17649
  * * [Face](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Face), which applies a texture to the front of the head
17650
+ *
17651
+ * Tags: NotReplicated
17626
17652
  */
17627
17653
  HeadColor: Color3;
17628
17654
  /**
@@ -17684,6 +17710,8 @@ interface HumanoidDescription extends Instance {
17684
17710
  * * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
17685
17711
  * * [Head](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Head), [Torso](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Torso), [RightArm](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightArm), [RightLeg](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightLeg) and [LeftLeg](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftLeg), which are similar properties that also control body part
17686
17712
  * * [LeftArmColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftArmColor), which controls the color of this limb
17713
+ *
17714
+ * Tags: NotReplicated
17687
17715
  */
17688
17716
  LeftArm: number;
17689
17717
  /**
@@ -17696,6 +17724,8 @@ interface HumanoidDescription extends Instance {
17696
17724
  * * [HeadColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HeadColor), [TorsoColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/TorsoColor), [RightArmColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightArmColor), [LeftLegColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftLegColor), and [RightLegColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightLegColor), which are similar properties that also control body colors
17697
17725
  * * [LeftArm](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftArm), which controls the mesh used for this limb
17698
17726
  * * [Shirt](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Shirt), which can apply a texture to this limb
17727
+ *
17728
+ * Tags: NotReplicated
17699
17729
  */
17700
17730
  LeftArmColor: Color3;
17701
17731
  /**
@@ -17707,6 +17737,8 @@ interface HumanoidDescription extends Instance {
17707
17737
  * * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
17708
17738
  * * [Head](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Head), [Torso](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Torso), [RightArm](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightArm), [LeftArm](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftArm), and [RightLeg](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightLeg), which are similar properties that also control body part
17709
17739
  * * [LeftLegColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftLegColor), which controls the color of this limb
17740
+ *
17741
+ * Tags: NotReplicated
17710
17742
  */
17711
17743
  LeftLeg: number;
17712
17744
  /**
@@ -17719,6 +17751,8 @@ interface HumanoidDescription extends Instance {
17719
17751
  * * [HeadColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HeadColor), [TorsoColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/TorsoColor), [LeftArmColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftArmColor), [RightArmColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightArmColor), and [RightLegColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightLegColor), which are similar properties that also control body colors
17720
17752
  * * [LeftLeg](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftLeg), which controls the mesh used for this limb
17721
17753
  * * [Pants](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Pants), which can apply a texture to this limb
17754
+ *
17755
+ * Tags: NotReplicated
17722
17756
  */
17723
17757
  LeftLegColor: Color3;
17724
17758
  MoodAnimation: number;
@@ -17732,6 +17766,8 @@ interface HumanoidDescription extends Instance {
17732
17766
  *
17733
17767
  * * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
17734
17768
  * * [BackAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/BackAccessory), [FaceAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/FaceAccessory), [FrontAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/FrontAccessory), [HairAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HairAccessory), [HatAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HatAccessory), [ShouldersAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/ShouldersAccessory) and [WaistAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/WaistAccessory), which are similar properties that apply accessories like this one
17769
+ *
17770
+ * Tags: NotReplicated
17735
17771
  */
17736
17772
  NeckAccessory: string;
17737
17773
  /**
@@ -17804,6 +17840,8 @@ interface HumanoidDescription extends Instance {
17804
17840
  * * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
17805
17841
  * * [Head](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Head), [Torso](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Torso), [LeftArm](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftArm), [RightLeg](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightLeg) and [LeftLeg](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftLeg), which are similar properties that also control body part
17806
17842
  * * [RightArmColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightArmColor), which controls the color of this limb
17843
+ *
17844
+ * Tags: NotReplicated
17807
17845
  */
17808
17846
  RightArm: number;
17809
17847
  /**
@@ -17816,6 +17854,8 @@ interface HumanoidDescription extends Instance {
17816
17854
  * * [HeadColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HeadColor), [TorsoColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/TorsoColor), [LeftArmColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftArmColor), [LeftLegColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftLegColor), and [RightLegColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightLegColor), which are similar properties that also control body colors
17817
17855
  * * [RightArm](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightArm), which controls the mesh used for this limb
17818
17856
  * * [Shirt](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Shirt), which can apply a texture to this limb
17857
+ *
17858
+ * Tags: NotReplicated
17819
17859
  */
17820
17860
  RightArmColor: Color3;
17821
17861
  /**
@@ -17827,6 +17867,8 @@ interface HumanoidDescription extends Instance {
17827
17867
  * * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
17828
17868
  * * [Head](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Head), [Torso](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Torso), [RightArm](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightArm), [LeftArm](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftArm) and [LeftLeg](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftLeg), which are similar properties that also control body part
17829
17869
  * * [RightLegColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightLegColor), which controls the color of this limb
17870
+ *
17871
+ * Tags: NotReplicated
17830
17872
  */
17831
17873
  RightLeg: number;
17832
17874
  /**
@@ -17839,6 +17881,8 @@ interface HumanoidDescription extends Instance {
17839
17881
  * * [HeadColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HeadColor), [TorsoColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/TorsoColor), [LeftArmColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftArmColor), [RightArmColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightArmColor), and [LeftLegColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftLegColor), which are similar properties that also control body colors
17840
17882
  * * [RightLeg](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightLeg), which controls the mesh used for this limb
17841
17883
  * * [Pants](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Pants), which can apply a texture to this limb
17884
+ *
17885
+ * Tags: NotReplicated
17842
17886
  */
17843
17887
  RightLegColor: Color3;
17844
17888
  /**
@@ -17875,6 +17919,8 @@ interface HumanoidDescription extends Instance {
17875
17919
  *
17876
17920
  * * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
17877
17921
  * * [BackAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/BackAccessory), [FaceAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/FaceAccessory), [FrontAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/FrontAccessory), [HairAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HairAccessory), [HatAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HatAccessory), [NeckAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/NeckAccessory) and [WaistAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/WaistAccessory), which are similar properties that apply accessories like this one
17922
+ *
17923
+ * Tags: NotReplicated
17878
17924
  */
17879
17925
  ShouldersAccessory: string;
17880
17926
  /**
@@ -17896,6 +17942,8 @@ interface HumanoidDescription extends Instance {
17896
17942
  * * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
17897
17943
  * * [Head](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Head), [RightArm](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightArm), [LeftArm](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftArm), [RightLeg](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightLeg) and [LeftLeg](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftLeg), which are similar properties that also control body part
17898
17944
  * * [TorsoColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/TorsoColor), which controls the color of this limb
17945
+ *
17946
+ * Tags: NotReplicated
17899
17947
  */
17900
17948
  Torso: number;
17901
17949
  /**
@@ -17908,6 +17956,8 @@ interface HumanoidDescription extends Instance {
17908
17956
  * * [HeadColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HeadColor), [TorsoColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/TorsoColor), [LeftArmColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftArmColor), [RightArmColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightArmColor), [LeftLegColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftLegColor), and [RightLegColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightLegColor), which are similar properties that also control body colors
17909
17957
  * * [Torso](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Torso), which controls the mesh used for this body part
17910
17958
  * * [GraphicTShirt](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/GraphicTShirt) and [Shirt](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Shirt), which can apply a texture to this body part
17959
+ *
17960
+ * Tags: NotReplicated
17911
17961
  */
17912
17962
  TorsoColor: Color3;
17913
17963
  /**
@@ -17920,6 +17970,8 @@ interface HumanoidDescription extends Instance {
17920
17970
  *
17921
17971
  * * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
17922
17972
  * * [BackAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/BackAccessory), [FaceAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/FaceAccessory), [FrontAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/FrontAccessory), [HairAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HairAccessory), [HatAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HatAccessory), [NeckAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/NeckAccessory) and [ShouldersAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/ShouldersAccessory), which are similar properties that apply accessories like this one
17973
+ *
17974
+ * Tags: NotReplicated
17923
17975
  */
17924
17976
  WaistAccessory: string;
17925
17977
  /**
@@ -28096,14 +28148,14 @@ interface PathfindingService extends Instance {
28096
28148
  * Tags: Yields
28097
28149
  * @deprecated Use `FindPathAsync` instead
28098
28150
  */
28099
- ComputeRawPathAsync(this: PathfindingService, start: Vector3, finish: Vector3, maxDistance: number): Instance | undefined;
28151
+ ComputeRawPathAsync(this: PathfindingService, start: Vector3, finish: Vector3, maxDistance: number): Path;
28100
28152
  /**
28101
28153
  * This function computes and returns a smooth [Path](https://developer.roblox.com/en-us/api-reference/class/Path) between two [Vector3s](https://developer.roblox.com/en-us/api-reference/datatype/Vector3). This function fulfills the same purpose as [PathfindingService:ComputeRawPathAsync](https://developer.roblox.com/en-us/api-reference/function/PathfindingService/ComputeRawPathAsync), but creates a much smoother path for an NPC to follow in comparison.
28102
28154
  *
28103
28155
  * Tags: Yields
28104
28156
  * @deprecated Use `FindPathAsync` instead
28105
28157
  */
28106
- ComputeSmoothPathAsync(this: PathfindingService, start: Vector3, finish: Vector3, maxDistance: number): Instance | undefined;
28158
+ ComputeSmoothPathAsync(this: PathfindingService, start: Vector3, finish: Vector3, maxDistance: number): Path;
28107
28159
  /**
28108
28160
  * This function is used to find a [Path](https://developer.roblox.com/en-us/api-reference/class/Path) between two provided points. This path uses the navigation grid created by [PathfindingService](https://developer.roblox.com/en-us/api-reference/class/PathfindingService) and makes sure that the path can be followed by a regular-sized Roblox character.
28109
28161
  *
@@ -31253,6 +31305,33 @@ interface ControllerPartSensor extends ControllerSensor {
31253
31305
  SensorMode: Enum.SensorMode;
31254
31306
  }
31255
31307
 
31308
+ interface FluidForceSensor extends SensorBase {
31309
+ /**
31310
+ * **DO NOT USE!**
31311
+ *
31312
+ * This field exists to force TypeScript to recognize this as a nominal type
31313
+ * @hidden
31314
+ * @deprecated
31315
+ */
31316
+ readonly _nominal_FluidForceSensor: unique symbol;
31317
+ /**
31318
+ * Tags: NotReplicated
31319
+ */
31320
+ readonly CenterOfPressure: Vector3;
31321
+ /**
31322
+ * Tags: NotReplicated
31323
+ */
31324
+ readonly Force: Vector3;
31325
+ /**
31326
+ * Tags: NotReplicated
31327
+ */
31328
+ readonly Torque: Vector3;
31329
+ /**
31330
+ * Tags: Yields
31331
+ */
31332
+ EvaluateAsync(this: FluidForceSensor, linearVelocity: Vector3, angularVelocity: Vector3, cframe: CFrame): unknown;
31333
+ }
31334
+
31256
31335
  /** **ServerScriptService** is a container service for [Script](https://developer.roblox.com/en-us/api-reference/class/Script), [ModuleScript](https://developer.roblox.com/en-us/api-reference/class/ModuleScript) and other scripting-related assets that are only meant for server use. The contents are never replicated to player clients at all, which allows for a secure storage of important game logic. Script objects will run if they are within this service and not [Disabled](https://developer.roblox.com/en-us/api-reference/property/BaseScript/Disabled).
31257
31336
  *
31258
31337
  * This service houses just one property, [LoadStringEnabled](https://developer.roblox.com/en-us/api-reference/property/ServerScriptService/LoadStringEnabled), which determines whether the `loadstring` function in Lua is enabled. It's recommended to keep this disabled for security reasons, as misusing this function can lead to remote code execution vulnerabilities.
@@ -3487,6 +3487,7 @@ interface Studio extends Instance {
3487
3487
  * Tags: NotReplicated
3488
3488
  */
3489
3489
  ["\"self\" Color"]: Color3;
3490
+ ActionOnStopSync: Enum.ActionOnStopSync;
3490
3491
  ["Active Color"]: Color3;
3491
3492
  ["Active Hover Over Color"]: Color3;
3492
3493
  ["Always Save Script Changes"]: boolean;
@@ -209,6 +209,35 @@ declare namespace Enum {
209
209
  }
210
210
  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;
211
211
 
212
+ export namespace ActionOnStopSync {
213
+ export interface AlwaysAsk extends globalThis.EnumItem {
214
+ Name: "AlwaysAsk";
215
+ Value: 0;
216
+ EnumType: typeof globalThis.Enum.ActionOnStopSync;
217
+ }
218
+
219
+ export const AlwaysAsk: AlwaysAsk;
220
+
221
+ export interface KeepLocalFiles extends globalThis.EnumItem {
222
+ Name: "KeepLocalFiles";
223
+ Value: 1;
224
+ EnumType: typeof globalThis.Enum.ActionOnStopSync;
225
+ }
226
+
227
+ export const KeepLocalFiles: KeepLocalFiles;
228
+
229
+ export interface DeleteLocalFiles extends globalThis.EnumItem {
230
+ Name: "DeleteLocalFiles";
231
+ Value: 2;
232
+ EnumType: typeof globalThis.Enum.ActionOnStopSync;
233
+ }
234
+
235
+ export const DeleteLocalFiles: DeleteLocalFiles;
236
+
237
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ActionOnStopSync>;
238
+ }
239
+ export type ActionOnStopSync = ActionOnStopSync.AlwaysAsk | ActionOnStopSync.KeepLocalFiles | ActionOnStopSync.DeleteLocalFiles;
240
+
212
241
  export namespace ActionType {
213
242
  export interface Nothing extends globalThis.EnumItem {
214
243
  Name: "Nothing";
@@ -1311,9 +1340,17 @@ declare namespace Enum {
1311
1340
 
1312
1341
  export const Available: Available;
1313
1342
 
1343
+ export interface AvailableBoundChannel extends globalThis.EnumItem {
1344
+ Name: "AvailableBoundChannel";
1345
+ Value: 5;
1346
+ EnumType: typeof globalThis.Enum.AppUpdateStatus;
1347
+ }
1348
+
1349
+ export const AvailableBoundChannel: AvailableBoundChannel;
1350
+
1314
1351
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AppUpdateStatus>;
1315
1352
  }
1316
- export type AppUpdateStatus = AppUpdateStatus.Unknown | AppUpdateStatus.NotSupported | AppUpdateStatus.Failed | AppUpdateStatus.NotAvailable | AppUpdateStatus.Available;
1353
+ export type AppUpdateStatus = AppUpdateStatus.Unknown | AppUpdateStatus.NotSupported | AppUpdateStatus.Failed | AppUpdateStatus.NotAvailable | AppUpdateStatus.Available | AppUpdateStatus.AvailableBoundChannel;
1317
1354
 
1318
1355
  export namespace ApplyStrokeMode {
1319
1356
  export interface Contextual extends globalThis.EnumItem {
@@ -5153,6 +5190,14 @@ declare namespace Enum {
5153
5190
 
5154
5191
  export const ReplacementReady: ReplacementReady;
5155
5192
 
5193
+ export interface ServerEmpty extends globalThis.EnumItem {
5194
+ Name: "ServerEmpty";
5195
+ Value: 302;
5196
+ EnumType: typeof globalThis.Enum.ConnectionError;
5197
+ }
5198
+
5199
+ export const ServerEmpty: ServerEmpty;
5200
+
5156
5201
  export interface PlacelaunchErrors extends globalThis.EnumItem {
5157
5202
  Name: "PlacelaunchErrors";
5158
5203
  Value: 512;
@@ -5355,7 +5400,7 @@ declare namespace Enum {
5355
5400
 
5356
5401
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ConnectionError>;
5357
5402
  }
5358
- 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.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;
5403
+ 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;
5359
5404
 
5360
5405
  export namespace ConnectionState {
5361
5406
  export interface Connected extends globalThis.EnumItem {
@@ -6917,6 +6962,35 @@ declare namespace Enum {
6917
6962
  }
6918
6963
  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;
6919
6964
 
6965
+ export namespace EditableStatus {
6966
+ export interface Unknown extends globalThis.EnumItem {
6967
+ Name: "Unknown";
6968
+ Value: 0;
6969
+ EnumType: typeof globalThis.Enum.EditableStatus;
6970
+ }
6971
+
6972
+ export const Unknown: Unknown;
6973
+
6974
+ export interface Allowed extends globalThis.EnumItem {
6975
+ Name: "Allowed";
6976
+ Value: 1;
6977
+ EnumType: typeof globalThis.Enum.EditableStatus;
6978
+ }
6979
+
6980
+ export const Allowed: Allowed;
6981
+
6982
+ export interface Disallowed extends globalThis.EnumItem {
6983
+ Name: "Disallowed";
6984
+ Value: 2;
6985
+ EnumType: typeof globalThis.Enum.EditableStatus;
6986
+ }
6987
+
6988
+ export const Disallowed: Disallowed;
6989
+
6990
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.EditableStatus>;
6991
+ }
6992
+ export type EditableStatus = EditableStatus.Unknown | EditableStatus.Allowed | EditableStatus.Disallowed;
6993
+
6920
6994
  export namespace ElasticBehavior {
6921
6995
  export interface WhenScrollable extends globalThis.EnumItem {
6922
6996
  Name: "WhenScrollable";
@@ -17182,9 +17256,33 @@ declare namespace Enum {
17182
17256
 
17183
17257
  export const Avatar: Avatar;
17184
17258
 
17259
+ export interface Input extends globalThis.EnumItem {
17260
+ Name: "Input";
17261
+ Value: 17;
17262
+ EnumType: typeof globalThis.Enum.SecurityCapability;
17263
+ }
17264
+
17265
+ export const Input: Input;
17266
+
17267
+ export interface Environment extends globalThis.EnumItem {
17268
+ Name: "Environment";
17269
+ Value: 18;
17270
+ EnumType: typeof globalThis.Enum.SecurityCapability;
17271
+ }
17272
+
17273
+ export const Environment: Environment;
17274
+
17275
+ export interface RemoteEvent extends globalThis.EnumItem {
17276
+ Name: "RemoteEvent";
17277
+ Value: 19;
17278
+ EnumType: typeof globalThis.Enum.SecurityCapability;
17279
+ }
17280
+
17281
+ export const RemoteEvent: RemoteEvent;
17282
+
17185
17283
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SecurityCapability>;
17186
17284
  }
17187
- 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;
17285
+ 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;
17188
17286
 
17189
17287
  export namespace SelectionBehavior {
17190
17288
  export interface Escape extends globalThis.EnumItem {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.806",
3
+ "version": "1.0.808",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },