PostgresKVStoreClientConfig
PostgresKVStoreClientConfig = {
clientConfig?:pg.ClientConfig; } | {shouldConnect?:boolean;client?:pg.Client|pg.PoolClient; }
Defined in: .build/typescript/packages/providers/storage/postgres/src/PostgresKVStore.ts:16
Type Declaration
Section titled “Type Declaration”{ clientConfig?: pg.ClientConfig; }
clientConfig?
Section titled “clientConfig?”
optionalclientConfig:pg.ClientConfig
Client configuration options for the pg client.
{ shouldConnect?: boolean; client?: pg.Client | pg.PoolClient; }
shouldConnect?
Section titled “shouldConnect?”
optionalshouldConnect:boolean
A pg client or pool client instance. If provided, make sure it is not connected to the database yet, or it will throw an error.
client?
Section titled “client?”
optionalclient:pg.Client|pg.PoolClient