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://googleapis.deno.dev/v1/docs:v1.ts";

The contents and style of a row in a Table.

interface TableRow {
endIndex?: number;
startIndex?: number;
suggestedDeletionIds?: string[];
suggestedInsertionIds?: string[];
suggestedTableRowStyleChanges?: {
[key: string]: SuggestedTableRowStyle;
}
;
tableCells?: TableCell[];
tableRowStyle?: TableRowStyle;
}

§Properties

§
endIndex?: number
[src]

The zero-based end index of this row, exclusive, in UTF-16 code units.

§
startIndex?: number
[src]

The zero-based start index of this row, in UTF-16 code units.

§
suggestedDeletionIds?: string[]
[src]

The suggested deletion IDs. If empty, then there are no suggested deletions of this content.

§
suggestedInsertionIds?: string[]
[src]

The suggested insertion IDs. A TableRow may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.

§
suggestedTableRowStyleChanges?: {
[key: string]: SuggestedTableRowStyle;
}
[src]

The suggested style changes to this row, keyed by suggestion ID.

§
tableCells?: TableCell[]
[src]

The contents and style of each cell in this row. It's possible for a table to be non-rectangular, so some rows may have a different number of cells than other rows in the same table.

§
tableRowStyle?: TableRowStyle
[src]

The style of the table row.