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

Table

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

A StructuralElement representing a table.

interface Table {
columns?: number;
rows?: number;
suggestedDeletionIds?: string[];
suggestedInsertionIds?: string[];
tableRows?: TableRow[];
tableStyle?: TableStyle;
}

§Properties

§
columns?: number
[src]

Number of columns in the table. It's possible for a table to be non-rectangular, so some rows may have a different number of cells.

§
rows?: number
[src]

Number of rows in the table.

§
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 Table may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.

§
tableRows?: TableRow[]
[src]

The contents and style of each row.

§
tableStyle?: TableStyle
[src]

The style of the table.