generator-begcode
Version:
Spring Boot + Angular/React/Vue in one handy generator
21 lines (20 loc) • 615 B
TypeScript
declare const command: {
readonly options: {
readonly devDatabaseType: {
readonly description: "Development database";
readonly type: StringConstructor;
readonly scope: "storage";
};
};
readonly configs: {
readonly prodDatabaseType: {
readonly cli: {
readonly type: StringConstructor;
readonly hide: true;
};
readonly choices: readonly ["postgresql", "mysql", "mariadb", "oracle", "mssql"];
readonly scope: "storage";
};
};
};
export default command;