@rbxts/types 1.0.751 → 1.0.752

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.
@@ -22886,7 +22886,13 @@ interface MemoryStoreSortedMap extends Instance {
22886
22886
  *
22887
22887
  * Tags: Yields
22888
22888
  */
22889
- SetAsync(this: MemoryStoreSortedMap, key: string, value: unknown, expiration: number, sortKey: unknown): boolean;
22889
+ SetAsync(
22890
+ this: MemoryStoreSortedMap,
22891
+ key: string,
22892
+ value: unknown,
22893
+ expiration: number,
22894
+ sortKey?: string | number,
22895
+ ): boolean;
22890
22896
  /**
22891
22897
  * Retrieves the value of a key from a sorted map and lets you update it to a new value via a callback function.
22892
22898
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.751",
3
+ "version": "1.0.752",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },