UNPKG

nx

Version:

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

13 lines (12 loc) 377 B
import { Task, TaskGraph } from '../../config/task-graph'; export declare function handleHashTasks(payload: { runnerOptions: any; tasks: Task[]; taskGraph: TaskGraph; perTaskEnvs: Record<string, NodeJS.ProcessEnv>; cwd: string; collectInputs?: boolean; }): Promise<{ response: import("../../hasher/task-hasher").Hash[]; description: string; }>;