UNPKG

nx

Version:

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

9 lines (8 loc) 270 B
import type { ExecutorContext } from '../../config/misc-interfaces'; export interface RunScriptOptions { script: string; __unparsed__: string[]; } export default function (options: RunScriptOptions, context: ExecutorContext): Promise<{ success: boolean; }>;