UNPKG

create-nx-workspace

Version:

Smart Repos · Fast Builds

6 lines (5 loc) 521 B
import { VcsPushStatus } from '../git/git'; export type NxCloud = 'yes' | 'github' | 'gitlab' | 'azure' | 'bitbucket-pipelines' | 'circleci' | 'skip'; export declare function readNxCloudToken(directory: string): string | undefined; export declare function createNxCloudOnboardingUrl(nxCloud: NxCloud, token: string, directory: string, useGitHub?: boolean): Promise<any>; export declare function getNxCloudInfo(nxCloud: NxCloud, connectCloudUrl: string, pushedToVcs: VcsPushStatus, rawNxCloud?: NxCloud): Promise<string>;