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

Type Parameters

  • R

Properties

Properties

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