I am only using one line of jQuery in my application:
$(\"div.printArea\").printArea();
But this is giving me a Typescript error:
You can cast it to
(<any>$('.selector') ).function();
Ex: date picker initialize using jquery
(<any>$('.datepicker') ).datepicker();