@rbxts/types 1.0.833 → 1.0.834

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.
@@ -21468,7 +21468,7 @@ interface JointInstance extends Instance {
21468
21468
  *
21469
21469
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/JointInstance#Part0)
21470
21470
  */
21471
- Part0?: BasePart;
21471
+ Part0: BasePart | undefined;
21472
21472
  /**
21473
21473
  * The second `BasePart` that the joint connects.
21474
21474
  *
@@ -21476,7 +21476,7 @@ interface JointInstance extends Instance {
21476
21476
  *
21477
21477
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/JointInstance#Part1)
21478
21478
  */
21479
- Part1?: BasePart;
21479
+ Part1: BasePart | undefined;
21480
21480
  }
21481
21481
  /**
21482
21482
  * The base class for classic motor joints.
@@ -33407,7 +33407,7 @@ interface CompressorSoundEffect extends SoundEffect {
33407
33407
  *
33408
33408
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CompressorSoundEffect#SideChain)
33409
33409
  */
33410
- SideChain?: Sound | SoundGroup;
33410
+ SideChain: Sound | SoundGroup | undefined;
33411
33411
  /**
33412
33412
  * Volume level at which point the compressor applies its effect.
33413
33413
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.833",
3
+ "version": "1.0.834",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },