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

TableRow

import type { TableRow } from "https://aws-api.deno.dev/v0.4/services/honeycode.ts?docs=full";

An object that contains attributes about a single row in a table

interface TableRow {
cells: Cell[];
rowId: string;
}

§Properties

§
cells: Cell[]
[src]

A list of cells in the table row. The cells appear in the same order as the columns of the table.

§
rowId: string
[src]

The id of the row in the table.