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; }