I am only using one line of jQuery in my application:
$(\"div.printArea\").printArea();
But this is giving me a Typescript error:
You can also write it like this:
let elem: any; elem = $("div.printArea"); elem.printArea();