@rbxts/types 1.0.795 → 1.0.796

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.
@@ -3020,12 +3020,10 @@ interface UnbanAsyncConfig {
3020
3020
  ApplyToUniverse?: boolean;
3021
3021
  }
3022
3022
 
3023
- interface DistanceAttenuationCurve {
3024
- /**
3025
- * Keys are expected to be unique numbers greater than or equal to 0, while values are expected to be numbers between 0 and 1 (inclusive). Tables containing up to 400 key-value pairs are supported.
3026
- */
3027
- [key: number]: number;
3028
- }
3023
+ /**
3024
+ * Keys are expected to be unique numbers greater than or equal to 0, while values are expected to be numbers between 0 and 1 (inclusive). Tables containing up to 400 key-value pairs are supported.
3025
+ */
3026
+ type DistanceAttenuationCurve = { [key: number]: number } | Map<number, number>;
3029
3027
 
3030
3028
  interface CalculateConstraintsToPreserveConfig {
3031
3029
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.795",
3
+ "version": "1.0.796",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },