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

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[];