type-fest 5.3.0 → 5.3.1

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "type-fest",
3
- "version": "5.3.0",
3
+ "version": "5.3.1",
4
4
  "description": "A collection of essential TypeScript types",
5
5
  "license": "(MIT OR CC0-1.0)",
6
6
  "repository": "sindresorhus/type-fest",
@@ -212,7 +212,7 @@ export namespace PackageJson {
212
212
  Recursive map describing selective dependency version overrides supported by npm.
213
213
  */
214
214
  type DependencyOverrides = {
215
- [packageName: string]: string | undefined | DependencyOverrides;
215
+ [packageName in string]: string | undefined | DependencyOverrides;
216
216
  };
217
217
 
218
218
  /**