我们如何使用@ types / bootbox和@ types / jquery?

时间:2017-07-06 10:12:11

标签: angular typescript

我们如何在angular 4项目中使用@ types / bootbox和@ types / jquery? 我做了类似的事情

npm install @types/bootbox

在我的代码中我正在做这样的事情

import * as bootbox from 'bootbox'.

我收到此错误 @ types / bootbox / index.d.ts(96,41):通用类型'JQuery'需要2个类型的参数。

1 个答案:

答案 0 :(得分:1)

只需使用NPM安装它们(@types/bootbox@types/jquery):

npm install --save-dev @types/bootbox
npm install --save-dev @types/jquery