[JS IR] export external declarations

This commit is contained in:
Anton Bannykh
2021-10-20 18:32:59 +03:00
committed by TeamCityServer
parent ee8351b9c9
commit 03b9caa439
2 changed files with 12 additions and 6 deletions
@@ -6,10 +6,6 @@ declare namespace JS_TESTS {
interface ExportedInternalInterface {
}
}
namespace foo {
interface FileLevelExportedExternalInterface {
}
}
namespace foo {
const exportedVal: number;
function exportedFun(): number;
@@ -18,6 +14,10 @@ declare namespace JS_TESTS {
readonly value: number;
}
}
namespace foo {
interface FileLevelExportedExternalInterface {
}
}
namespace foo {
const fileLevelExportedVal: number;
function fileLevelExportedFun(): number;