有没有办法可以在打字稿中导入module(?)(一组函数),并且可以引用没有Module.
前缀的这些函数?
例如:
import * as Operations from './Operations';
我可以将
Operations.example()
称为example()
吗?本质上是合并“命名空间”吗? 最佳答案
你可以做:
import { example } from './Operations';
这假定您要从文件中导出
example
作为命名导出。// ./Operations
export function example () {...}
Typescript Module Documentation
关于javascript - typescript 导入功能进入现有模块的范围,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55402079/