UNPKG

nx

Version:

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

6 lines (5 loc) 388 B
/** Allowed values for `--step-action`, the orchestrated reconcile's decision relay. */ export declare const STEP_ACTIONS: readonly ['retry', 'skip', 'retry-clean', 'adopt']; export type StepAction = (typeof STEP_ACTIONS)[number]; /** Runtime guard backed by {@link STEP_ACTIONS} so the two can't drift apart. */ export declare function isStepAction(value: unknown): value is StepAction;