unified-llm-client
    Preparing search index...

    Interface PostgresSessionStoreQueryResult<TRow>

    Minimal query result contract used by Postgres-backed stores/loggers.

    interface PostgresSessionStoreQueryResult<TRow = Record<string, unknown>> {
        rowCount?: number | null;
        rows: TRow[];
    }

    Type Parameters

    • TRow = Record<string, unknown>
    Index

    Properties

    Properties

    rowCount?: number | null
    rows: TRow[]