sschmid 5 gadi atpakaļ
vecāks
revīzija
53b8a2cfa2
1 mainītis faili ar 2 papildinājumiem un 0 dzēšanām
  1. 2 0
      src/Common/FileIO/Mxl.ts

+ 2 - 0
src/Common/FileIO/Mxl.ts

@@ -13,6 +13,8 @@ export class MXLHelper {
      * @constructor
      */
     public static MXLtoIXmlElement(data: string): Promise<IXmlElement> {
+        // starting with jszip 3.4.0, JSZip.JSZip is not found,
+        //    probably because of new possibly conflicting TypeScript definitions
         const zip: JSZip.JSZip = new JSZip();
         // asynchronously load zip file and process it - with Promises
         return zip.loadAsync(data).then(