Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/pgc4d/src/types.ts>KeyedRow

A full-featured PostgreSQL Client for Deno
Latest
type alias KeyedRow
import { type KeyedRow } from "https://deno.land/x/pgc4d@v1.3.6/src/types.ts";

A row in the shape of a JavaScript object, with column names as keys:

{ first_name: 'John', last_name: 'Doe', age: 33 }
definition: { [key: string]: ColumnValue; }