Causality Analyzer
    Preparing search index...

    Minimal interface satisfied by pg.Client and pg-mem adapters.

    When config.client is provided, the Store uses it directly (no new() call). When absent, the Store creates its own pg.Client from connectionString / mtls / ssl config.

    interface PgClientLike {
        connect(): Promise<void>;
        end(): Promise<void>;
        query(sql: string, params?: unknown[]): Promise<{ rows: unknown[] }>;
    }
    Index
    • Parameters

      • sql: string
      • Optionalparams: unknown[]

      Returns Promise<{ rows: unknown[] }>