Слияние кода завершено, страница обновится автоматически
Currently we export every global symbol we could find. Instead we should only export what was exported in the original file. We can check whether the symbol was exported or not by IsExported
and IsDefaultExported
methods.
class C {}
const c: C = new C;
export {c}
class C {}
export {C}
exports.C = C
const c: C = new C;
export {c}
exports.c = c
class C {}
const c: C = new C;
export {c}
exports.c = c
Вход Перед тем как оставить комментарий