When working with Angular JS, I often generate code through Typescript. There was a specific situation where I needed to include an external JS file in my typescript code and access the classes within it.
The way I added the js file looked like this:
/// <amd-dependency path="../../vendor/tweenMax.js" />
However, even after adding the js file in this manner, the typescript file still could not recognize the objects within the javascript file.
If anyone has a solution or knows a better way to handle this issue, please share your answer. (I am using a minified .js file)