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

TableRowStyle

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

Styles that apply to a table row.

interface TableRowStyle {
minRowHeight?: Dimension;
preventOverflow?: boolean;
tableHeader?: boolean;
}

§Properties

§
minRowHeight?: Dimension
[src]

The minimum height of the row. The row will be rendered in the Docs editor at a height equal to or greater than this value in order to show all the content in the row's cells.

§
preventOverflow?: boolean
[src]

Whether the row cannot overflow across page or column boundaries.

§
tableHeader?: boolean
[src]

Whether the row is a table header.