Files
docx-js/ts/docx/paragraph/properties.ts
felipe 7ff838357a removed empty Attributes from ParagraphProperties
I checked the spec, and "w:pPr" does not take any attributes. I also
converted the paragraph tests to use the deep.equal style to get rid
of some more jsonify!
2017-03-10 10:32:40 +01:00

13 lines
253 B
TypeScript

import { Attributes, XmlComponent } from "../xml-components";
export class ParagraphProperties extends XmlComponent {
constructor() {
super("w:pPr");
}
public push(item: XmlComponent): void {
this.root.push(item);
}
}