File: /var/www/web.enelar.com.co/node_modules/nx/src/command-line/show/command-object.d.ts
import type { ProjectGraphProjectNode } from '../../config/project-graph';
import { CommandModule } from 'yargs';
export interface NxShowArgs {
json?: boolean;
}
export type ShowProjectsOptions = NxShowArgs & {
exclude: string;
files: string;
uncommitted: any;
untracked: any;
base: string;
head: string;
affected: boolean;
type: ProjectGraphProjectNode['type'];
projects: string[];
withTarget: string[];
};
export type ShowProjectOptions = NxShowArgs & {
projectName: string;
web?: boolean;
};
export declare const yargsShowCommand: CommandModule<Record<string, unknown>, NxShowArgs>;