docx
Version:
Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.
14 lines (13 loc) • 399 B
TypeScript
import { XmlAttributeComponent } from '../xml-components';
export interface IChangedAttributesProperties {
readonly id: number;
readonly author: string;
readonly date: string;
}
export declare class ChangeAttributes extends XmlAttributeComponent<IChangedAttributesProperties> {
protected readonly xmlKeys: {
id: string;
author: string;
date: string;
};
}