types.ts 467 B

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