Update xmlbuilder

This commit is contained in:
Casper Warden
2019-09-25 19:10:59 +01:00
parent fd14f67acc
commit 4bf699deaf
11 changed files with 38 additions and 52 deletions

View File

@@ -1,5 +1,5 @@
import {vec4} from '../tsm/vec4';
import {XMLElementOrXMLNode} from 'xmlbuilder';
import {XMLNode} from 'xmlbuilder';
export class Vector4 extends vec4
{
@@ -8,7 +8,7 @@ export class Vector4 extends vec4
return new Vector4();
}
static getXML(doc: XMLElementOrXMLNode, v?: Vector4)
static getXML(doc: XMLNode, v?: Vector4)
{
if (v === undefined)
{