UNPKG

@joefitter/docx

Version:

Generate .docx documents with JavaScript (formerly Office-Clippy)

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