bullmq - v6.0.3
    Preparing search index...

    Interface PgPoolConfig

    Connection configuration accepted by new pg.Pool(config). Kept loose (a superset via the index signature) so callers can pass any node-postgres pool option without us re-declaring the full pg.PoolConfig.

    interface PgPoolConfig {
        connectionString?: string;
        database?: string;
        host?: string;
        max?: number;
        password?: string;
        port?: number;
        user?: string;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index
    connectionString?: string
    database?: string
    host?: string
    max?: number
    password?: string
    port?: number
    user?: string