在 node 里面,不是 exports 实际上是个 js 对象嘛。我想为 node 模块写个 .d.ts (类型注解) 。
然后我写了个 Instance 接口,这样默认导出是可以符合预期的。但是怎么写能够使它兼容 js 的那种结构导入方式。就是 ts 里也能这么写 import { instance_property } from "module"
我目前大概是这么实现的:
declare const sdk: Instance // Instance 就是个 interface
export default sdk
谢谢大佬们!
1
noe132 2020-09-06 00:08:40 +08:00
https://www.typescriptlang.org/docs/handbook/declaration-files/templates/module-d-ts.html
// js module.export = { a: 1, b: 2, default: 3 } declare 'module { export a: number export b: number const c: number export default c } import defaultExport, { a, b } from 'module' import * as m from 'module' m.default === defaultExport m.a === a m.b === b // js module.export = () => 1 declare 'module' { const f: () => number export = f } import * as f1 from 'module' const f2 = require('module') f1 === f2 |
2
a632079 OP @noe132 感谢你的回复,问题好像已经解决了(和方法二一致)。我在 Stackoverflow 发了同样的问题: https://stackoverflow.com/questions/63755690/how-to-export-property-of-a-interface-object-like-javascript-in-typescript?noredirect=1#comment112742307_63755690
这里可能描述更详细一些。项目是一个 CommonJS 模块,大概有 160 多个方法(没有定义 default )。它告诉我还有明明合并这种操作的时候有点小激动(完全忘了这个方法,还是基础不扎实呀 |