types.ts 494 B

1234567891011121314151617
  1. export type DbType = 'mysql' | 'mariadb' | 'postgres' | 'sqlite' | 'sqljs' | 'mssql' | 'oracle';
  2. export interface UserResponses {
  3. dbType: DbType;
  4. populateProducts: boolean;
  5. indexSource: string;
  6. indexWorkerSource: string;
  7. configSource: string;
  8. envSource: string;
  9. envDtsSource: string;
  10. migrationSource: string;
  11. readmeSource: string;
  12. superadminIdentifier: string;
  13. superadminPassword: string;
  14. }
  15. export type CliLogLevel = 'silent' | 'info' | 'verbose';