Made project Prettier compliant

This commit is contained in:
Dolan
2018-01-23 01:33:12 +00:00
parent f2027230a0
commit e93d6799fd
101 changed files with 1198 additions and 1207 deletions

View File

@ -5,69 +5,55 @@ interface IComponentAttributes {
}
class ComponentAttributes extends XmlAttributeComponent<IComponentAttributes> {
protected xmlKeys = {val: "w:val"};
protected xmlKeys = { val: "w:val" };
}
export class Name extends XmlComponent {
constructor(value: string) {
super("w:name");
this.root.push(new ComponentAttributes({val: value}));
this.root.push(new ComponentAttributes({ val: value }));
}
}
export class BasedOn extends XmlComponent {
constructor(value: string) {
super("w:basedOn");
this.root.push(new ComponentAttributes({val: value}));
this.root.push(new ComponentAttributes({ val: value }));
}
}
export class Next extends XmlComponent {
constructor(value: string) {
super("w:next");
this.root.push(new ComponentAttributes({val: value}));
this.root.push(new ComponentAttributes({ val: value }));
}
}
export class Link extends XmlComponent {
constructor(value: string) {
super("w:link");
this.root.push(new ComponentAttributes({val: value}));
this.root.push(new ComponentAttributes({ val: value }));
}
}
export class UiPriority extends XmlComponent {
constructor(value: string) {
super("w:uiPriority");
// TODO: this value should be a ST_DecimalNumber
this.root.push(new ComponentAttributes({val: value}));
this.root.push(new ComponentAttributes({ val: value }));
}
}
export class UnhideWhenUsed extends XmlComponent {
}
export class UnhideWhenUsed extends XmlComponent {}
export class QuickFormat extends XmlComponent {
constructor() {
super("w:qFormat");
}
}
export class TableProperties extends XmlComponent {
export class TableProperties extends XmlComponent {}
}
export class RsId extends XmlComponent {}
export class RsId extends XmlComponent {
}
export class SemiHidden extends XmlComponent {
}
export class SemiHidden extends XmlComponent {}