@catladder/cli
Version:
Panter cli tool for cloud CI/CD and DevOps
19 lines • 519 B
TypeScript
export declare const commandProjectRestoreDb: import("../../core").CommandDef<{
readonly source: {
readonly type: "string";
readonly message: "Source instance? 🤔 ";
readonly choices: () => Promise<string[]>;
};
readonly target: {
readonly type: "string";
readonly message: "target env? 🤔 ";
readonly choices: () => Promise<{
name: string;
value: string;
}[]>;
};
readonly confirmInstance: {
readonly type: "string";
readonly message: "confirm: ";
};
}>;