I have a problem with import these modules to my angular2 component. I using angular2-webpack-starter from AngularClass.
I install dependecies with npm:
npm install jquery --save
npm install malihu-custom-scrollbar-plugin --save
and install typings:
typings install jquery --save --ambient
typings install mcustomscrollbar --save --ambient
And i want to use it in component like this:
jQuery('.selector').mCustomScrollbar();
What is the best solution to do that?
I tried to use this solution: Whats the best way to use jquery widgets inside angular 2?
But it's not work, i got error "jQuery is not defined".