Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/docxml/src/properties/table-properties.ts>TableProperties

TypeScript library for parsing and building a DOCXML file
Go to Latest
type alias TableProperties
import { type TableProperties } from "https://deno.land/x/docxml@5.1.1/src/properties/table-properties.ts";
definition: { style?: string | null; width?:
| null
| number
| "`${number}%"
| string
| { length: "`${number}%" | string | number; unit:
| null
| "nil"
| "auto"
| "dxa"
| "pct"
; }
; look?: null | { firstColumn?: null | boolean; lastColumn?: null | boolean; firstRow?: null | boolean; lastRow?: null | boolean; noHBand?: null | boolean; noVBand?: null | boolean; }; borders?: null | { top?: null | Border<LineBorderType | ArtBorderType>; left?: null | Border<LineBorderType | ArtBorderType>; bottom?: null | Border<LineBorderType | ArtBorderType>; right?: null | Border<LineBorderType | ArtBorderType>; insideH?: null | Border<LineBorderType | ArtBorderType>; insideV?: null | Border<LineBorderType | ArtBorderType>; }; }