@aws/pdk
Version:
All documentation is located at: https://aws.github.io/aws-pdk
13 lines (12 loc) • 465 B
TypeScript
import { type ProjectSnapshot } from '@pnpm/lockfile-file';
import { type TreeNodeId } from './TreeNodeId';
export interface getTreeNodeChildIdOpts {
readonly parentId: TreeNodeId;
readonly dep: {
readonly alias: string;
readonly ref: string;
};
readonly lockfileDir: string;
readonly importers: Record<string, ProjectSnapshot>;
}
export declare function getTreeNodeChildId(opts: getTreeNodeChildIdOpts): TreeNodeId | undefined;