11 lines
281 B
TypeScript
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",
|
|
};
|
|
} |