如何将wampy正确导入TypeScript项目?
Wampy.js安装
typings install dt~wampy --global --save && npm install wampy --save
尝试导入Wampy:
import {Wampy} from "wampy";
npm start
产生此错误:
error TS2305: Module '"wampy"' has no exported member 'Wampy'.
接下来我尝试导入,正如我在这里看到的:
import * as Wampy from "wampy";
获取
error TS2304: Cannot find name 'Wampy'.
如果它对某人有帮助我手动添加
<script src="node_modules/wampy/build/wampy.min.js"></script>
到index.html并声明Wampy为任何(正如我发布的(:
declare var Wampy: any;
现在它起作用了。