UNPKG

@teambit/isolator

Version:
7 lines (6 loc) 499 B
import type { LinkDetail } from '@teambit/dependency-resolver'; import type { Logger } from '@teambit/logger'; import type { Capsule } from './capsule'; import type CapsuleList from './capsule-list'; export declare function symlinkDependenciesToCapsules(capsules: Capsule[], capsuleList: CapsuleList, logger: Logger): Promise<Record<string, Record<string, string>>>; export declare function symlinkOnCapsuleRoot(capsuleList: CapsuleList, logger: Logger, capsuleRoot: string): Promise<LinkDetail[]>;