UNPKG

@catladder/cli

Version:

Panter cli tool for cloud CI/CD and DevOps

9 lines 480 B
import { type IConnectionStringParameters } from "connection-string-parser"; /** * Parses a PostgreSQL connection string. * Accepts both postgres:// and postgresql:// schemes and normalizes to postgresql:// * * @param connectionString - The connection string to parse (e.g., "postgresql://user:pass@localhost:5432/dbname") * @returns Parsed connection string parameters */ export declare function parseConnectionString(connectionString: string): IConnectionStringParameters;