@joefitter/docx
Version:
Generate .docx documents with JavaScript (formerly Office-Clippy)
10 lines (9 loc) • 328 B
TypeScript
import { XmlAttributeComponent } from "../../../../../file/xml-components";
export interface IHeaderReferenceAttributes {
readonly value: string;
}
export declare class TitlePageAttributes extends XmlAttributeComponent<IHeaderReferenceAttributes> {
protected readonly xmlKeys: {
value: string;
};
}