UNPKG

docx

Version:

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

10 lines (8 loc) 238 B
import { XmlAttributeComponent } from "file/xml-components"; export class ShapePropertiesAttributes extends XmlAttributeComponent<{ readonly bwMode?: string; }> { protected readonly xmlKeys = { bwMode: "bwMode", }; }