Access javascript variable included in HTML header from typescript
问题 I have a javascript file included in the <head></head> tags of my Angular 2 app. I would like to access a function in that javascript file from my typescript file, how should I do that? When I'm running the app, I can type var simplemde = new SimpleMDE() in the browser console to get my markdown editor working, but how can I do this in the constructor in my typescript file? 回答1: Just declare it at the top of your component or wherever you need it like so: declare var SimpleMDE: any; Then you