我尝试在我的 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,所以我不能使用构造函数。
三国纷争
茅侃侃
相关分类