types.ts 300 B

1234567891011
  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. configSource: string;
  8. }
  9. export type LogLevel = 'silent' | 'info' | 'verbose';