kysely
    Preparing search index...

    Interface PostgresQueryResult<R>

    interface PostgresQueryResult<R> {
        command: "UPDATE" | "DELETE" | "INSERT" | "SELECT" | "MERGE";
        rowCount: number;
        rows: R[];
    }

    Type Parameters

    • R
    Index

    Properties

    Properties

    command: "UPDATE" | "DELETE" | "INSERT" | "SELECT" | "MERGE"
    rowCount: number
    rows: R[]