File: /var/www/web.enelar.com.co/node_modules/nx/src/project-graph/utils/normalize-project-nodes.d.ts
import { ProjectGraphProjectNode } from '../../config/project-graph';
import { ProjectGraphBuilder } from '../project-graph-builder';
import { NxJsonConfiguration } from '../../config/nx-json';
import { ProjectConfiguration, TargetConfiguration } from '../../config/workspace-json-project-json';
import { CreateDependenciesContext } from '../../utils/nx-plugin';
export declare function normalizeProjectNodes(ctx: CreateDependenciesContext, builder: ProjectGraphBuilder, nxJson: NxJsonConfiguration): Promise<void>;
/**
* Apply target defaults and normalization
*/
export declare function normalizeProjectTargets(project: ProjectConfiguration, targetDefaults: NxJsonConfiguration['targetDefaults'], projectName: string): Record<string, TargetConfiguration>;
export declare function normalizeImplicitDependencies(source: string, implicitDependencies: ProjectConfiguration['implicitDependencies'], projects: Record<string, ProjectGraphProjectNode>): string[];