before config state

This commit is contained in:
zino
2021-05-14 13:48:13 +02:00
parent 126b9be7ea
commit e7242594b4
9 changed files with 299 additions and 251 deletions

View File

@@ -2,6 +2,7 @@ import axios, { AxiosResponse } from 'axios';
var xml2jsParser = require('xml2js').parseString;
import * as I from "../types/types";
import Utils from './utils';
//import { state } from "../seatmap";
export function getXMLPromise(url: string): Promise<unknown> {
return axios.get(url)
@@ -57,4 +58,5 @@ export function getEventInfo(inVenueXML: I.VenueXML): I.EventInfo {
let eventInfo: I.EventInfo = { ...eventObj, ...eventExtend };
return eventInfo;
}
}