UNPKG

docx

Version:

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

16 lines (13 loc) 402 B
import { XmlAttributeComponent } from "file/xml-components"; export interface IChangedAttributesProperties { readonly id: number; readonly author: string; readonly date: string; } export class ChangeAttributes extends XmlAttributeComponent<IChangedAttributesProperties> { protected readonly xmlKeys = { id: "w:id", author: "w:author", date: "w:date", }; }