UNPKG

nx

Version:

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

10 lines (9 loc) 503 B
export interface DaemonProcessJson { processId: number; } export declare const serverProcessJsonPath: string; export declare function readDaemonProcessJsonCache(): DaemonProcessJson | null; export declare function deleteDaemonJsonProcessCache(): void; export declare function writeDaemonJsonProcessCache(daemonJson: DaemonProcessJson): Promise<void>; export declare function waitForDaemonToExitAndCleanupProcessJson(): Promise<void>; export declare function getDaemonProcessIdSync(): number | null;