10 lines
228 B
TypeScript
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",
|
|
};
|
|
}
|