UNPKG

nx

Version:

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

15 lines (14 loc) 762 B
import { Tree } from '../../../generators/tree'; import { NxJsonConfiguration } from '../../../config/nx-json'; export declare function printSuccessMessage(token: string | undefined, installationSource: string, usesGithub: boolean): Promise<string>; export interface ConnectToNxCloudOptions { analytics?: boolean; installationSource?: string; hideFormatLogs?: boolean; github?: boolean; directory?: string; generateToken?: boolean; } export declare function connectToNxCloud(tree: Tree, schema: ConnectToNxCloudOptions, nxJson?: NxJsonConfiguration<string[] | "*">): Promise<string | null>; declare function connectToNxCloudGenerator(tree: Tree, options: ConnectToNxCloudOptions): Promise<void>; export default connectToNxCloudGenerator;