UNPKG

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) 581 B
import { XmlAttributeComponent, XmlComponent } from '../xml-components'; export declare const VerticalAlign: { readonly BOTTOM: "bottom"; readonly CENTER: "center"; readonly TOP: "top"; }; export declare class VerticalAlignAttributes extends XmlAttributeComponent<{ readonly verticalAlign?: (typeof VerticalAlign)[keyof typeof VerticalAlign]; }> { protected readonly xmlKeys: { verticalAlign: string; }; } export declare class VerticalAlignElement extends XmlComponent { constructor(value: (typeof VerticalAlign)[keyof typeof VerticalAlign]); }