types.ts 389 B

1234567891011121314
  1. export type DbType = 'mysql' | '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. }
  12. export type CliLogLevel = 'silent' | 'info' | 'verbose';