import type _npmFetch from 'npm-registry-fetch'; import { Maybe } from 'true-myth'; import type { RegistrySettings } from '../../config/registry-settings.ts'; export type PackageVersionDetails = { readonly version: string; readonly tarballUrl: string; readonly gitHead: string | undefined; }; export type PackageReleaseMetadata = { readonly publishedAt?: Date | undefined; readonly tarballUrl: string; readonly version: string; readonly gitHead: string | undefined; }; //# sourceMappingURL=package-metadata-fetcher.d.ts.map