UNPKG

nx

Version:

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

17 lines (16 loc) 657 B
import { type AgenticArg } from '../agentic/select'; export interface RunSingleMigrationWorkerInput { root: string; runMigration: string; runId?: string; /** The raw `--agentic` value; resolved here against the environment. */ agentic: AgenticArg; validate: boolean | undefined; /** The requested value; the effective value is resolved here against the agentic kind. */ createCommits: boolean | undefined; commitPrefix: string; interactive: boolean | undefined; skipInstall: boolean; isVerbose: boolean; } export declare function runSingleMigrationWorker(input: RunSingleMigrationWorkerInput): Promise<void>;