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

TableCellBorder

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

A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0.

interface TableCellBorder {
color?: OptionalColor;
dashStyle?:
| "DASH_STYLE_UNSPECIFIED"
| "SOLID"
| "DOT"
| "DASH";
width?: Dimension;
}

§Properties

§

The color of the border. This color cannot be transparent.

§
dashStyle?: "DASH_STYLE_UNSPECIFIED" | "SOLID" | "DOT" | "DASH"
[src]

The dash style of the border.

§

The width of the border.