UNPKG

nx

Version:

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

16 lines (15 loc) 634 B
import { Task } from '../../config/task-graph'; import { LifeCycle, TaskResult } from '../life-cycle'; import { LegacyTaskHistoryLifeCycle } from './task-history-life-cycle-old'; export declare function getTasksHistoryLifeCycle(): TaskHistoryLifeCycle | LegacyTaskHistoryLifeCycle | null; export declare class TaskHistoryLifeCycle implements LifeCycle { private startTimings; private taskRuns; private taskHistory; private flakyTasks; constructor(); startTasks(tasks: Task[]): void; endTasks(taskResults: TaskResult[]): Promise<void>; endCommand(): Promise<void>; printFlakyTasksMessage(): void; }