import {XmlComponent, Attributes} from "../xml-components"; export class Style implements XmlComponent { private pStyle: Array; xmlKeys = { pStyle: 'w:pStyle' } constructor(type: string) { this.pStyle = new Array(); this.pStyle.push(new Attributes({ val: type })); } }