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