import { Result } from 'true-myth'; import type { PacktoryConfigWithoutRegistry } from '../config/config.ts'; import type { ConfigWithGraph } from '../config/validation.ts'; import type { AnalyzedBundle } from '../dead-code-eliminator/analyzed-bundle.ts'; import type { VersionManager } from '../version-manager/manager.ts'; import type { ResolveAndLinkOptions } from './map-config.ts'; export type ResolvedPackage = { readonly name: string; readonly analyzedBundle: AnalyzedBundle; readonly resolveOptions: ResolveAndLinkOptions; }; export type CheckError = { readonly type: 'checks'; readonly issues: readonly string[]; }; export {}; //# sourceMappingURL=resolved-package.d.ts.map