Hi i need to call a normal javascript function from a typescripit file.
Assume that i have a javascript file names test.js and i have imported this file in the index.html of the application.
Now i need to call this test() function from app.component.ts file.
function test(){
cosole.log('test');
}