Work around: (not a solution via @ types / jqueryui)
You can use @ types / jqueryui for input / autocomplete.
HTML root:
Import jquery and jquery UI js files
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
component:
In component declaration
declare var $:any;
use it in a class like this
export class JqueryUIIntegrationComponent implements AfterViewInit {
@ViewChild('jqueryElement') el:ElementRef;
constructor() {
}
ngAfterViewInit() {
console.log(this);
$(this.el.nativeElement).draggable();
}
}
. @types/jqueryui (). , - .