如何为现有的npm插件模块定义类型?

时间:2020-02-14 10:55:00

标签: typescript npm nodemailer

我尝试将使用nodemailernodemailer-html-to-text插件的代码库转换为打字稿。

Nodemailer有@types个定义,但是nodemailer-html-to-text没有。

如何为该模块创建自己的类型定义?


我试图在项目中创建一个@types/nodemailer-html-to-text.d.ts文件:

declare module 'nodemailer-html-to-text' {
}

从这里开始,我希望该文件导出类型为Mail.PluginFunctionhtmlToText函数定义,但是我不知道该怎么做……

1 个答案:

答案 0 :(得分:0)

在这里module-plugin.d.ts找到了它:

{{1}}