UNPKG

docx

Version:

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

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