Files
docx-js/src/file/document/body/section-properties/title-page/title-page-attributes.ts
2021-03-15 00:11:39 +00:00

10 lines
228 B
TypeScript

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