Postgres: Make securejson password optional (#75801)

make securejson password optional
This commit is contained in:
Gareth Dawson
2023-10-02 11:36:51 +01:00
committed by GitHub
parent 73be9449d1
commit 8331523679
@@ -23,5 +23,5 @@ export interface PostgresOptions extends SQLOptions {
}
export interface SecureJsonData {
password: string;
password?: string;
}