在Angular 2 TypeScript项目中包含外部JavaScript库

时间:2016-06-30 07:23:18

标签: angularjs parse-platform typescript visual-studio-code

我创建了新的Angular 2项目。并希望包含parse.com sdk。 将Parse.com添加为npm模块

npm install parse --save

并为parse.com sdk安装了打字

tsd install parse

现在我需要在TypeScript项目中使用Parse Object。 不知道如何让系统将其包含在打字中,以便我可以从组件中访问Typed Parse对象。

这是一个回购:https://github.com/Borntofly/MyAngularProject.git

1 个答案:

答案 0 :(得分:1)

Theres my Repo: https://github.com/lohiarahul/Angular2-Silverlight-Starter

如果你看到,我的ts文件中有Silverlight.Object()方法。 " Silverlight"对象位于index.html文件中包含的Silverlight.js中。

要使用.ts中的对象,您只需声明一个具有相同名称的var。它应该工作。