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) 299 B
import { Task } from '../../config/task-graph'; import { LifeCycle, TaskResult } from '../life-cycle'; export declare class TaskTimingsLifeCycle implements LifeCycle { private timings; startTasks(tasks: Task[]): void; endTasks(taskResults: TaskResult[]): void; endCommand(): void; }