Files
docx-js/ts/styles/style/index.ts
2016-05-07 20:17:18 +01:00

18 lines
419 B
TypeScript

import {XmlComponent} from "../../docx/xml-components";
import {StyleAttributes} from "./attributes";
export class Style extends XmlComponent {
constructor(attributes: StyleAttributes) {
super("w:style");
this.root.push(attributes);
}
push(styleSegment: XmlComponent): void {
this.root.push(styleSegment);
}
}
export class ParagraphStyle extends XmlComponent {
}