KeyedRow
import type { KeyedRow } from "https://raw.githubusercontent.com/jakajancar/pgc4d/master/src/mod.ts";
A row in the shape of a JavaScript object, with column names as keys:
{ first_name: 'John', last_name: 'Doe', age: 33 }
type KeyedRow = {};
[key: string]: ColumnValue;
§Type
§
{}
[src][key: string]: ColumnValue;