UNPKG

@nrwl/workspace

Version:

The Workspace plugin contains executors and generators that are useful for any Nx workspace. It should be present in every Nx workspace and other plugins build on it.

11 lines (10 loc) 357 B
import { Rule } from '@angular-devkit/schematics'; export interface PackageNameMapping { [packageName: string]: string; } /** * Updates all the imports found in the workspace * * @param packageNameMapping The packageNameMapping provided to the schematic */ export declare function renamePackageImports(packageNameMapping: PackageNameMapping): Rule;