UNPKG

docx

Version:

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

12 lines (9 loc) 286 B
import { XmlAttributeComponent } from "file/xml-components"; export interface IPicAttributes { readonly xmlns?: string; } export class PicAttributes extends XmlAttributeComponent<IPicAttributes> { protected readonly xmlKeys = { xmlns: "xmlns:pic", }; }