UNPKG

@nx/angular

Version:

The Nx Plugin for Angular contains executors, generators, and utilities for managing Angular applications and libraries within an Nx workspace. It provides: - Integration with libraries such as Storybook, Jest, ESLint, Tailwind CSS, Playwright and Cypre

12 lines 538 B
import { Tree } from '@nx/devkit'; import type { EntryPoint } from './entry-point'; export interface ComponentInfo { componentFileName: string; moduleFolderPath: string; name: string; path: string; entryPointName: string; } export declare function getComponentsInfo(tree: Tree, entryPoint: EntryPoint, moduleFilePaths: string[], projectName: string): ComponentInfo[]; export declare function getStandaloneComponentsInfo(tree: Tree, entryPoint: EntryPoint): ComponentInfo[]; //# sourceMappingURL=component-info.d.ts.map