UNPKG

nx

Version:

The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.

6 lines (5 loc) 277 B
import { InitArgs } from '../init-v1'; import { PackageJson } from '../../../utils/package-json'; type Options = Pick<InitArgs, 'nxCloud' | 'interactive' | 'cacheable'>; export declare function addNxToNest(options: Options, packageJson: PackageJson): Promise<void>; export {};