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

TableCell

import type { TableCell } from "https://googleapis.deno.dev/v1/docs:v1.ts";

The contents and style of a cell in a Table.

interface TableCell {
content?: StructuralElement[];
endIndex?: number;
startIndex?: number;
suggestedDeletionIds?: string[];
suggestedInsertionIds?: string[];
suggestedTableCellStyleChanges?: {
[key: string]: SuggestedTableCellStyle;
}
;
tableCellStyle?: TableCellStyle;
}

§Properties

§

The content of the cell.

§
endIndex?: number
[src]

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

§
startIndex?: number
[src]

The zero-based start index of this cell, 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 TableCell may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.

§
suggestedTableCellStyleChanges?: {
[key: string]: SuggestedTableCellStyle;
}
[src]

The suggested changes to the table cell style, keyed by suggestion ID.

§
tableCellStyle?: TableCellStyle
[src]

The style of the cell.