IndexedRow
import type { IndexedRow } from "https://raw.githubusercontent.com/jakajancar/pgc4d/master/src/mod.ts";
A row in the shape of a JavaScript array, without column names:
[ 'John', 'Doe', 33 ]
type IndexedRow = ColumnValue[];
import type { IndexedRow } from "https://raw.githubusercontent.com/jakajancar/pgc4d/master/src/mod.ts";
A row in the shape of a JavaScript array, without column names:
[ 'John', 'Doe', 33 ]