// http://officeopenxml.com/WPtableWidth.php import { XmlAttributeComponent, XmlComponent } from "file/xml-components"; import { WidthType } from "../table-cell"; interface ITableWidth { readonly type: WidthType; readonly w: number | string; } class TableWidthAttributes extends XmlAttributeComponent { protected readonly xmlKeys = { type: "w:type", w: "w:w" }; } export class PreferredTableWidth extends XmlComponent { constructor(type: WidthType, w: number) { super("w:tblW"); this.root.push(new TableWidthAttributes({ type, w })); } }