I have installed jQueryUI & Bootstrap in my .NET MVC project & loaded types for typescript with npm
"devDependencies": {
"@types/jquery": "3.5.x",
"@types/jqueryui": "1.12.x",
"@types/jquery.validation": "1.16.x",
"@types/bootstrap": "5.1.x"
}
I am getting following errors while code compilation since 'tooltip'
is available in both bootstrap & jQueryUI.
(TS) Duplicate property 'tooltip'
Any ideas how I can use Bootstrap & jQuery with types for typescript.