@dev-thought/nx-deploy-it
Version:
[](https://www.npmjs.com/package/@dev-thought/nx-deploy-it) [](http://opensource.
57 lines (56 loc) • 1.28 kB
TypeScript
import { ANGULAR_UNIVERSAL_DEPLOYMENT_TYPE } from '../adapter/angular-universal/deployment-type.enum';
export declare const QUESTIONS: {
awsRegion: {
type: string;
name: string;
message: string;
limit: number;
choices: string[];
};
gcpRegionCloudFunctions: {
type: string;
name: string;
message: string;
limit: number;
choices: string[];
};
gcpProjectId: {
type: string;
name: string;
message: string;
};
azureLocation: {
type: string;
name: string;
message: string;
limit: number;
choices: string[];
};
customDomainName: {
type: string;
name: string;
message: string;
initial: string;
};
awsProfile: {
type: string;
name: string;
message: string;
};
setupApplications: {
type: string;
name: string;
message: string;
};
whichProvider: any;
angularUniversal: {
type: string;
name: string;
message: string;
choices: {
name: string;
value: ANGULAR_UNIVERSAL_DEPLOYMENT_TYPE;
}[];
result: (r: string) => unknown;
};
};