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