如何在没有默认导出的情况下从 'express' 导入快递?
How it is possible to import express from 'express' without a default export?
使用 typescript 并安装 @types/express 可以默认导入 express,但 express index.d.ts 没有默认导出。
我知道有标志 allowSyntheticDefaultImports,但即使设置为 true 我也无法复制相同的效果。
这怎么可能?我找不到这个的命名法和相关问题。
这行是可能的:
export = e;
This thread and more specifically this comment 很好地解释了 export/import 的工作方式
使用 typescript 并安装 @types/express 可以默认导入 express,但 express index.d.ts 没有默认导出。 我知道有标志 allowSyntheticDefaultImports,但即使设置为 true 我也无法复制相同的效果。 这怎么可能?我找不到这个的命名法和相关问题。
这行是可能的:
export = e;
This thread and more specifically this comment 很好地解释了 export/import 的工作方式