From bbc84b2690d61f784f771441d5b610aaf6dff265 Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Tue, 22 Apr 2025 17:44:32 -0700 Subject: [PATCH] pg-connection-string: fix 'parse' type signature --- packages/pg-connection-string/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/pg-connection-string/index.d.ts b/packages/pg-connection-string/index.d.ts index 88618ba9..02c772ad 100644 --- a/packages/pg-connection-string/index.d.ts +++ b/packages/pg-connection-string/index.d.ts @@ -1,6 +1,6 @@ import { ClientConfig } from 'pg' -export function parse(connectionString: string, options: Options): ConnectionOptions +export function parse(connectionString: string, options?: Options): ConnectionOptions export interface Options { // Use libpq semantics when interpreting the connection string