| 1234567891011121314151617 |
- export type DbType = 'mysql' | 'mariadb' | 'postgres' | 'sqlite' | 'sqljs' | 'mssql' | 'oracle';
- export interface UserResponses {
- dbType: DbType;
- populateProducts: boolean;
- indexSource: string;
- indexWorkerSource: string;
- configSource: string;
- envSource: string;
- envDtsSource: string;
- migrationSource: string;
- readmeSource: string;
- superadminIdentifier: string;
- superadminPassword: string;
- }
- export type CliLogLevel = 'silent' | 'info' | 'verbose';
|