diff --git a/src/file/xml-components/simple-elements.ts b/src/file/xml-components/simple-elements.ts index 64d45819e3..07f188f622 100644 --- a/src/file/xml-components/simple-elements.ts +++ b/src/file/xml-components/simple-elements.ts @@ -44,3 +44,11 @@ export class StringValueElement extends XmlComponent { this.root.push(new Attributes({ val })); } } + +// This represents various number element types. +export class NumberValueElement extends XmlComponent { + constructor(name: string, val: number) { + super(name); + this.root.push(new Attributes({ val })); + } +}