File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
custom-elements-manifest-tools/src/lib Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -20,13 +20,13 @@ export const PackageStatus = {
2020 ...ReadablePackageStatus ,
2121 ...UnreadablePackageStatus ,
2222} as const ;
23- export type PackageStatus = typeof PackageStatus [ keyof typeof PackageStatus ] ;
23+ export type PackageStatus = ( typeof PackageStatus ) [ keyof typeof PackageStatus ] ;
2424
2525export const VersionStatus = {
2626 ...ReadableVersionStatus ,
2727 ...UnreadableVersionStatus ,
2828} as const ;
29- export type VersionStatus = typeof VersionStatus [ keyof typeof VersionStatus ] ;
29+ export type VersionStatus = ( typeof VersionStatus ) [ keyof typeof VersionStatus ] ;
3030
3131export const isReadablePackage = (
3232 p : PackageInfo | undefined
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ export interface PackageFiles {
1515 *
1616 * The response must be compatible with the npm registry Package Metadata
1717 * API: https://github.com/npm/registry/blob/master/docs/responses/package-metadata.md
18- *
18+ *
1919 * If a package is not found, the returned Promise must reject with an
2020 * HttpError with status 404.
2121 */
You can’t perform that action at this time.
0 commit comments