UNPKG

@routineless/nx-aws-cdk

Version:
14 lines (13 loc) 382 B
import { Tree } from '@nx/devkit'; export type ProjectProperties = { projectName: string; projectRoot: string; projectDirectory: string; appsDir: string; }; type PackageProperties = { name: string; directory?: string; }; export declare const injectProjectProperties: <T extends PackageProperties>(tree: Tree, options: T) => T & ProjectProperties; export {};