UNPKG

docx

Version:

Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.

9 lines (8 loc) 299 B
import { XmlComponent } from '../../../../xml-components'; export declare enum PageTextDirectionType { LEFT_TO_RIGHT_TOP_TO_BOTTOM = "lrTb", TOP_TO_BOTTOM_RIGHT_TO_LEFT = "tbRl" } export declare class PageTextDirection extends XmlComponent { constructor(value: PageTextDirectionType); }