rucken
Version:
Console tools and scripts for nx and not only that I (EndyKaufman) use to automate the workflow and speed up the development process
14 lines (13 loc) • 527 B
TypeScript
import { UtilsService } from '../utils/utils.service';
export declare class PostgresCommands {
private readonly utilsService;
private readonly postgresConfig;
constructor(utilsService: UtilsService);
postgres({ rootDatabaseUrl, appDatabaseUrl, forceChangeUsername, forceChangePassword, dropAppDatabase, }: {
rootDatabaseUrl: string;
appDatabaseUrl: string;
forceChangeUsername?: boolean;
forceChangePassword?: boolean;
dropAppDatabase?: boolean;
}): Promise<void>;
}