UNPKG

nx

Version:

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

24 lines (23 loc) 773 B
export declare const NX_PREFIX: string; export declare const NX_ERROR: string; type LogDriver = Pick<Console, 'warn' | 'error' | 'info' | 'log' | 'debug'>; export declare function createLogger(driver: LogDriver): { warn: (...v: any[]) => void; error: (s: any) => void; info: (s: any) => void; log: (...s: any[]) => void; debug: (...s: any[]) => void; fatal: (...s: any[]) => void; verbose: (...s: any[]) => void; }; export declare const logger: { warn: (...v: any[]) => void; error: (s: any) => void; info: (s: any) => void; log: (...s: any[]) => void; debug: (...s: any[]) => void; fatal: (...s: any[]) => void; verbose: (...s: any[]) => void; }; export declare function stripIndent(str: string): string; export {};