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

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

§
{
[key: string]: ColumnValue;
}
[src]