type-fest 3.5.4 → 3.5.6
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/source/simplify.d.ts +1 -1
package/package.json
CHANGED
package/source/package-json.d.ts
CHANGED
|
@@ -240,7 +240,7 @@ declare namespace PackageJson {
|
|
|
240
240
|
Import map entries of a module, optionally with conditions.
|
|
241
241
|
*/
|
|
242
242
|
export type Imports = { // eslint-disable-line @typescript-eslint/consistent-indexed-object-style
|
|
243
|
-
[key: `#${string}`]: string | {[key in ExportCondition]
|
|
243
|
+
[key: `#${string}`]: string | {[key in ExportCondition]?: Exports};
|
|
244
244
|
};
|
|
245
245
|
|
|
246
246
|
// eslint-disable-next-line @typescript-eslint/consistent-type-definitions
|
package/source/simplify.d.ts
CHANGED