如何在打字稿中使用 javascript 构造函数?

我尝试在我的 Typescript 项目中使用 Javascript 库。在 JS 库中,我有一个类(pdfjs-dist),它有一个这样使用的构造函数:


findController = new _pdf_find_controller.PDFFindController({

    linkService: pdfLinkService,

    eventBus: eventBus

});

我遇到的问题是如何在.d.ts文件中定义 PDFFindController ,所以我可以使用该构造函数? 我试过这样的方法:


class PDFFindController {

        constructor(linkService: LinkService, eventBus: EventBus) {}

但到目前为止,我仍然PDFFindController是undefined,所以我不能使用构造函数。


慕侠2389804
浏览 84回答 2
2回答

三国纷争

您正在使用pdf.js。当您应该使用 npm 时,您可能从 CDN 下载或添加了它。已经为它编写了类型,要安装所有内容,请运行:npm install pdfjs-distnpm install -D @types/pdfjs-dist然后在您的代码中:import { ... } from 'pdfjs-dist';一旦你这样做,类型应该可以工作(假设你的 tsconfig 中没有错误)。

茅侃侃

最简单的方法是将返回的类型标记为任何。这意味着 TS 将跳过类型检查。let (findController as any) = new _pdf_find_controller.PDFFindController({linkService: pdfLinkService,eventBus: eventBus});这能解决你的问题还是你需要一个类型?
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript