I am currently in the process of migrating a large project from JavaScript to TypeScript, taking it step by step.
So far, I have converted one of the files to TypeScript, but the other files can contain any content at the moment.
For example, something like:
declare module jsModule:any;
var obj:jsModule.cls = new jsModule.cls()
However, this is not working as expected. I realize that I need to specify each exported class, function, or variable in the module declaration.
Is there a quick way to declare an external module as "any"?