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) • 397 B
TypeScript
import { XmlAttributeComponent } from '../xml-components';
export type 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;
};
}