import {XmlComponent, Attributes} from "../xml-components"; export class Bold { private b: Array; constructor() { this.b = new Array(); this.b.push(new Attributes({ val: true })); } } export class Italics { private i: Array; constructor() { this.i = new Array(); this.i.push(new Attributes({ val: true })); } } export class Underline { private u: Array; constructor() { this.u = new Array(); this.u.push(new Attributes({ val: true })); } }