@aws/pdk
Version:
All documentation is located at: https://aws.github.io/aws-pdk
12 lines (11 loc) • 346 B
TypeScript
import { type Lockfile } from '@pnpm/lockfile-types';
export declare function extendProjectsWithTargetDirs<T>(projects: Array<T & {
id: string;
}>, lockfile: Lockfile, ctx: {
virtualStoreDir: string;
pkgLocationsByDepPath?: Record<string, string[]>;
}): Array<T & {
id: string;
stages: string[];
targetDirs: string[];
}>;