Fix compilation

This commit is contained in:
WebFreak001 2016-12-07 00:46:27 +01:00
commit 9e478cb675

View file

@ -314,5 +314,5 @@ export function parseMI(output: string): MINode {
output = output.replace(newlineRegex, "");
}
return new MINode(token, outOfBandRecord || [], resultRecords);
return new MINode(token, <any>outOfBandRecord || [], resultRecords);
}