UNPKG

docx

Version:

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

9 lines (8 loc) 244 B
import { XmlComponent } from "../../../file/xml-components"; export declare enum TableLayoutType { AUTOFIT = "autofit", FIXED = "fixed" } export declare class TableLayout extends XmlComponent { constructor(type: TableLayoutType); }