@routineless/nx-aws-cdk
Version:
Nx plugin for AWS CDK
14 lines (13 loc) • 382 B
TypeScript
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 {};