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 +1 -1
- package/source/package-json.d.ts +1 -1
package/package.json
CHANGED
package/source/package-json.d.ts
CHANGED
|
@@ -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
|
|
215
|
+
[packageName in string]: string | undefined | DependencyOverrides;
|
|
216
216
|
};
|
|
217
217
|
|
|
218
218
|
/**
|