there is no need for the settings.xml file anymore

This commit is contained in:
Sergio Mendonça
2018-09-17 22:09:05 -03:00
parent 146d0ad9e5
commit 0eb36be053
8 changed files with 4 additions and 239 deletions

View File

@ -1,22 +0,0 @@
import { XmlAttributeComponent, XmlComponent } from "file/xml-components";
export interface IUpdateFieldsAttributesProperties {
enabled: boolean;
}
export class UpdateFieldsAttributes extends XmlAttributeComponent<IUpdateFieldsAttributesProperties> {
protected xmlKeys = {
enabled: "w:val",
};
}
export class UpdateFields extends XmlComponent {
constructor(enabled: boolean = true) {
super("w:updateFields");
this.root.push(
new UpdateFieldsAttributes({
enabled,
}),
);
}
}