import { XmlAttributeComponent, XmlComponent } from "file/xml-components"; export enum HeightRule { /** Height is determined based on the content, so value is ignored. */ AUTO = "auto", /** At least the value specified */ ATLEAST = "atLeast", /** Exactly the value specified */ EXACT = "exact", } interface ITableRowHeight { readonly height: number; readonly rule: HeightRule; } export class TableRowHeightAttributes extends XmlAttributeComponent { protected readonly xmlKeys = { height: "w:val", rule: "w:hRule" }; } export class TableRowHeight extends XmlComponent { constructor(value: number, rule: HeightRule) { super("w:trHeight"); this.root.push( new TableRowHeightAttributes({ height: value, rule: rule, }), ); } }