import {XmlComponent, Attributes} from "../xml-components"; import {Style} from "./style"; export class NumberProperties implements XmlComponent { private numPr: Array; constructor() { this.numPr = new Array(); this.numPr.push(new IndentLevel(0)); this.numPr.push(new NumberId(1)); } } export class IndentLevel implements XmlComponent { private ilvl: Array; constructor(level: number) { this.ilvl = new Array(); this.ilvl.push(new Attributes({ val: level })); } } export class NumberId implements XmlComponent { private ilvl: Array; constructor(id: number) { this.ilvl = new Array(); this.ilvl.push(new Attributes({ val: id })); } }