@contentstack/cli-cm-clone
Version:
Contentstack stack clone plugin
26 lines (25 loc) • 698 B
TypeScript
/**
* Constants for clone operations
*/
/**
* List of structure modules (excluding entries and assets)
*/
export declare const STRUCTURE_LIST: string[];
/**
* Stack creation confirmation prompt configuration
*/
export declare const STACK_CREATION_CONFIRMATION: readonly [{
readonly type: "confirm";
readonly name: "stackCreate";
readonly message: "Want to clone content into a new stack ?";
readonly initial: true;
}];
/**
* Stack name prompt configuration
*/
export declare const STACK_NAME_PROMPT: {
readonly type: "input";
readonly name: "stack";
readonly default: "ABC";
readonly message: "Enter name for the new stack to store the cloned content ?";
};