Files
docx-js/ts/docx/paragraph/style.ts

12 lines
313 B
TypeScript
Raw Normal View History

2016-03-30 02:55:11 +01:00
import {XmlComponent, Attributes} from "../xml-components";
export class Style implements XmlComponent {
private pStyle: Array<XmlComponent>;
constructor(type: string) {
this.pStyle = new Array<XmlComponent>();
this.pStyle.push(new Attributes({
val: type
}));
}
}