Files
docx-js/src/file/document/body/section-properties/title-page/title-page-attributes.ts

12 lines
300 B
TypeScript
Raw Normal View History

2018-05-12 20:04:54 -04:00
import { XmlAttributeComponent } from "file/xml-components";
export interface IHeaderReferenceAttributes {
readonly value: string;
2018-05-12 20:04:54 -04:00
}
export class TitlePageAttributes extends XmlAttributeComponent<IHeaderReferenceAttributes> {
protected readonly xmlKeys = {
2018-05-12 20:04:54 -04:00
value: "w:val",
};
2018-05-18 09:21:27 -06:00
}