2018-05-12 20:04:54 -04:00
|
|
|
import { XmlAttributeComponent } from "file/xml-components";
|
|
|
|
|
2021-03-15 00:11:39 +00:00
|
|
|
export class TitlePageAttributes extends XmlAttributeComponent<{
|
2018-11-02 02:51:57 +00:00
|
|
|
readonly value: string;
|
2021-03-15 00:11:39 +00:00
|
|
|
}> {
|
2018-11-02 02:51:57 +00:00
|
|
|
protected readonly xmlKeys = {
|
2018-05-12 20:04:54 -04:00
|
|
|
value: "w:val",
|
|
|
|
};
|
2018-05-18 09:21:27 -06:00
|
|
|
}
|