Files
docx-js/src/file/document/body/section-properties/titlepage/titlepage-attributes.ts
2018-05-12 20:04:54 -04:00

11 lines
281 B
TypeScript

import { XmlAttributeComponent } from "file/xml-components";
export interface IHeaderReferenceAttributes {
value: string;
}
export class TitlePageAttributes extends XmlAttributeComponent<IHeaderReferenceAttributes> {
protected xmlKeys = {
value: "w:val",
};
}