//// [ExportVariableOfGenericTypeWithInaccessibleTypeAsTypeArgument.ts] module A { class B { id: number; } export var beez: Array; export var beez2 = new Array(); } //// [ExportVariableOfGenericTypeWithInaccessibleTypeAsTypeArgument.js] var A; (function (A) { var B = (function () { function B() { } return B; })(); A.beez2 = new Array(); })(A || (A = {}));