unified-llm-client
    Preparing search index...

    Interface PostgresSessionStorePool

    Minimal Postgres pool contract used by the session store.

    interface PostgresSessionStorePool {
        end?: () => Promise<void>;
        query: <TRow = Record<string, unknown>>(
            text: string,
            values?: unknown[],
        ) => Promise<PostgresSessionStoreQueryResult<TRow>>;
    }
    Index

    Properties

    Properties

    end?: () => Promise<void>
    query: <TRow = Record<string, unknown>>(
        text: string,
        values?: unknown[],
    ) => Promise<PostgresSessionStoreQueryResult<TRow>>