UNPKG

docx

Version:

Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.

15 lines (14 loc) 555 B
import { IgnoreIfEmptyXmlComponent } from '../../xml-components'; import { PositiveUniversalMeasure } from '../../../util/values'; import { HeightRule } from "./table-row-height"; export interface ITableRowPropertiesOptions { readonly cantSplit?: boolean; readonly tableHeader?: boolean; readonly height?: { readonly value: number | PositiveUniversalMeasure; readonly rule: HeightRule; }; } export declare class TableRowProperties extends IgnoreIfEmptyXmlComponent { constructor(options: ITableRowPropertiesOptions); }