docx
Version:
Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.
17 lines (16 loc) • 479 B
TypeScript
import { XmlAttributeComponent, XmlComponent } from '../xml-components';
export declare enum VerticalAlign {
BOTTOM = "bottom",
CENTER = "center",
TOP = "top"
}
export declare class VerticalAlignAttributes extends XmlAttributeComponent<{
readonly verticalAlign?: VerticalAlign;
}> {
protected readonly xmlKeys: {
verticalAlign: string;
};
}
export declare class VerticalAlignElement extends XmlComponent {
constructor(value: VerticalAlign);
}