create-nx-workspace
Version:
9 lines • 808 B
TypeScript
import { VcsPushStatus } from '../git/git';
import { CompletionMessageKey } from './messages';
export type NxCloud = 'yes' | 'github' | 'gitlab' | 'azure' | 'bitbucket-pipelines' | 'circleci' | 'skip';
export declare function connectToNxCloudForTemplate(directory: string, installationSource: string, useGitHub?: boolean): Promise<string | null>;
export declare function readNxCloudToken(directory: string): string;
export declare function createNxCloudOnboardingUrl(nxCloud: NxCloud, token: string, directory: string, useGitHub?: boolean): Promise<string>;
export declare function getNxCloudInfo(connectCloudUrl: string, pushedToVcs: VcsPushStatus, completionMessageKey?: CompletionMessageKey): Promise<string>;
export declare function getSkippedNxCloudInfo(): string;
//# sourceMappingURL=nx-cloud.d.ts.map