gpt4 book ai didi

typescript - 导入整个模块而不重命名

转载 作者:行者123 更新时间:2023-12-04 16:55:46 24 4
gpt4 key购买 nike

如果我导入整个模块而不重命名导入,所有导入的声明都在导入模块的命名空间中可用吗?

例如:

import * 'some_module'

假设 some_module有一个名为 Foo 的声明, 会 Foo导入后是否可用?

例如:
import * 'some_module';

var coolStuff = Foo.coolStuff();

最佳答案

are all of the imported declarations available in the importing module's namespace



不。

would Foo be available as such after the import?



不,也没有用于此的 ES6 模块语法。

为什么

全局变量很难分析和代码审查。命名的导入更容易单独审查。许多相同的原因 modules are better than globals in the first place .希望有帮助🌹

关于typescript - 导入整个模块而不重命名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43795390/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com