docx
Version:
Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.
19 lines (18 loc) • 542 B
TypeScript
import { XmlAttributeComponent, XmlComponent } from "../../../file/xml-components";
export declare enum HeightRule {
AUTO = "auto",
ATLEAST = "atLeast",
EXACT = "exact"
}
export declare class TableRowHeightAttributes extends XmlAttributeComponent<{
readonly value: number | string;
readonly rule: HeightRule;
}> {
protected readonly xmlKeys: {
value: string;
rule: string;
};
}
export declare class TableRowHeight extends XmlComponent {
constructor(value: number | string, rule: HeightRule);
}