UNPKG

docx

Version:

Generate .docx documents with JavaScript (formerly Office-Clippy)

10 lines (9 loc) 454 B
import { IgnoreIfEmptyXmlComponent } from "../../../file/xml-components"; import { WidthType } from "../table-cell"; export declare class TableCellMargin extends IgnoreIfEmptyXmlComponent { constructor(); addTopMargin(value: number, type?: WidthType): void; addLeftMargin(value: number, type?: WidthType): void; addBottomMargin(value: number, type?: WidthType): void; addRightMargin(value: number, type?: WidthType): void; }