import type { PackageInterface } from '../config/package-interface.ts'; export type ImplicitPackageSurface = { readonly mode: 'implicit'; readonly defaultModuleRoot: string; }; export type ExplicitPackageSurface = { readonly mode: 'explicit'; readonly packageInterface: PackageInterface; }; export type PackageSurface = ExplicitPackageSurface | ImplicitPackageSurface; //# sourceMappingURL=surface.d.ts.map