Files
docx-js/build/file/table/properties.d.ts

9 lines
356 B
TypeScript
Raw Normal View History

2018-04-02 14:37:54 +03:00
import { XmlComponent } from "../../file/xml-components";
export declare type WidthTypes = "dxa" | "pct" | "nil" | "auto";
export declare class TableProperties extends XmlComponent {
constructor();
setWidth(type: WidthTypes, w: number | string): TableProperties;
fixedWidthLayout(): TableProperties;
setBorder(): TableProperties;
}