我在我的打字稿项目里有这个
import * as schedule from "node-schedule";
import * as ACTIONS from "../../../actions";下面的那个解决了,但上面的那个没有解决。这是我在执行npm install node-schedule时获得的一个节点包。我得到了
Cannot find module 'node-schedule' or its corresponding type declarations.ts(2307)我怎么能进口呢?
发布于 2020-07-25 19:43:02
您需要安装它的类型包。
npm install --save @types/node-schedulehttps://stackoverflow.com/questions/63092764
复制相似问题