Skip to content

Commit

Permalink
fix(package): Valid TypeScript
Browse files Browse the repository at this point in the history
  • Loading branch information
ffflorian committed Jul 21, 2023
1 parent c0809c3 commit 81538b6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions schemas/json-schemas.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1348,8 +1348,8 @@
"version": "0.0.3"
},
"package.json": {
"hash": "a9db191a0837de202d389790e2cdc71e88bdb01345bff7442bc006330cd5b610",
"version": "0.0.9"
"hash": "706ba9014643c594ac6ab92494abf9e4a452b9fe9ab42b75d159300ddf0ee64e",
"version": "0.0.10"
},
"package.manifest-7.0.0.json": {
"hash": "efc911ed3e7b8651020c83b83a52d90af1f2531f3088684e0eeec515a933b3bf",
Expand Down
6 changes: 3 additions & 3 deletions schemas/package/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15164,7 +15164,7 @@ export interface JSONSchemaForNPMPackageJsonFiles2 {
* This interface was referenced by `undefined`'s JSON-Schema definition
* via the `patternProperty` "^\./.+".
*/
[k: string]: PackageExportsEntry | PackageExportsFallback;
[k: string]: PackageExportsEntry | PackageExportsFallback | undefined;
}
| PackageExportsEntryObject1
| PackageExportsFallback1;
Expand Down Expand Up @@ -15469,7 +15469,7 @@ export interface PackageExportsEntryObject {
* This interface was referenced by `PackageExportsEntryObject1`'s JSON-Schema definition
* via the `patternProperty` "^(?![\.0-9]).".
*/
[k: string]: PackageExportsEntry | PackageExportsFallback;
[k: string]: PackageExportsEntry | PackageExportsFallback | undefined;
}
/**
* Used to specify conditional exports, note that Conditional exports are unsupported in older environments, so it's recommended to use the fallback array option if support for those environments is a concern.
Expand Down Expand Up @@ -15504,7 +15504,7 @@ export interface PackageExportsEntryObject1 {
* This interface was referenced by `PackageExportsEntryObject1`'s JSON-Schema definition
* via the `patternProperty` "^(?![\.0-9]).".
*/
[k: string]: PackageExportsEntry | PackageExportsFallback;
[k: string]: PackageExportsEntry | PackageExportsFallback | undefined;
}
/**
* Used to inform about ways to help fund development of the package.
Expand Down
6 changes: 3 additions & 3 deletions schemas/package/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
"scripts": {},
"typeScriptVersion": "2.2",
"types": "index.d.ts",
"typesPublisherContentHash": "a9db191a0837de202d389790e2cdc71e88bdb01345bff7442bc006330cd5b610",
"version": "0.0.9"
}
"typesPublisherContentHash": "706ba9014643c594ac6ab92494abf9e4a452b9fe9ab42b75d159300ddf0ee64e",
"version": "0.0.10"
}

0 comments on commit 81538b6

Please sign in to comment.