31 lines
952 B
TypeScript
31 lines
952 B
TypeScript
![]() |
import { SpaceType } from "file/space-type";
|
||
|
import { XmlAttributeComponent, XmlComponent } from "file/xml-components";
|
||
|
|
||
|
class TextAttributes extends XmlAttributeComponent<{ readonly space: SpaceType }> {
|
||
|
protected readonly xmlKeys = { space: "xml:space" };
|
||
|
}
|
||
|
|
||
|
export class DeletedPage extends XmlComponent {
|
||
|
constructor() {
|
||
|
super("w:delInstrText");
|
||
|
this.root.push(new TextAttributes({ space: SpaceType.PRESERVE }));
|
||
|
this.root.push("PAGE");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export class DeletedNumberOfPages extends XmlComponent {
|
||
|
constructor() {
|
||
|
super("w:delInstrText");
|
||
|
this.root.push(new TextAttributes({ space: SpaceType.PRESERVE }));
|
||
|
this.root.push("NUMPAGES");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export class DeletedNumberOfPagesSection extends XmlComponent {
|
||
|
constructor() {
|
||
|
super("w:delInstrText");
|
||
|
this.root.push(new TextAttributes({ space: SpaceType.PRESERVE }));
|
||
|
this.root.push("SECTIONPAGES");
|
||
|
}
|
||
|
}
|