UNPKG

docx

Version:

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

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