UNPKG

@aws/pdk

Version:

All documentation is located at: https://aws.github.io/aws-pdk

18 lines (17 loc) 442 B
export type TreeNodeId = TreeNodeIdImporter | TreeNodeIdPackage; /** * A project local to the pnpm workspace. */ interface TreeNodeIdImporter { readonly type: 'importer'; readonly importerId: string; } /** * An npm package depended on externally. */ interface TreeNodeIdPackage { readonly type: 'package'; readonly depPath: string; } export declare function serializeTreeNodeId(treeNodeId: TreeNodeId): string; export {};