我想在typescript文件中导入这个crypto-json JavaScript库。 当我尝试运行此命令“typings install dt~crypto-json --global --save”但得到以下错误
打字ERR!系统Windows_NT 10.0.14393 打字ERR!命令“D:\ Backup \ EnvironmentVariables \ node-v6.9.5-win-x64 \ node.exe”“D:\ Backup \ EnvironmentVariables \ node-v6.9.5-win-x64 \ node_modules \ typings \ dist \ bin.js “”安装“”dt~crypto-json“” - save“” - global“ 打字ERR! node -v v6.9.5 打字ERR!打字-v 2.1.1 打字ERR! 打字ERR!如果您需要帮助,可以在以下位置报告此错误: 打字ERR! https://github.com/typings/typings/issues
使用typings版本2.1.1
答案 0 :(得分:1)
DefinitelyTyped doesn't have any typings for crypto-json。如果你想要它们,你必须自己编写它们(然后最好发布它们以便其他人可以受益)。
此外,您应该放弃打字CLI - it's effectively been deprecated,因为您现在可以使用NPM安装类型定义。
答案 1 :(得分:0)
crypto-json可能没有TypeScript定义库。
您可以转到https://microsoft.github.io/TypeSearch/,检查是否存在库的输入文件。
例如,https://www.npmjs.com/package/@types/crypto-js有一个,但没有出现在crypto-json中。
如果没有可用的类型定义,您可以查找有关如何使用JavaScript库的教程