UNPKG

nx

Version:

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

20 lines (19 loc) 605 B
import type { PostTasksExecutionContext, PreTasksExecutionContext } from '../../project-graph/plugins/public-api'; export declare function handleRunPreTasksExecution(context: PreTasksExecutionContext): Promise<{ response: string; description: string; error?: undefined; } | { error: any; description: string; response?: undefined; }>; export declare function handleRunPostTasksExecution(context: PostTasksExecutionContext): Promise<{ response: string; description: string; error?: undefined; } | { error: any; description: string; response?: undefined; }>;