Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PostgresQueryResult

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

§Type Parameters

§Properties

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