I have been trying to convert the following code snippets into Typescript, but haven't found a solution yet. Can you please advise me on how to achieve this functionality?
$('html').addClass('abc');
$(".abc .wrap").css("height", height - 70);
Here is another example.
$("#Box").css("index", "");
$("#mID").css("index", "");
I need guidance on how to write these in Typescript for Angular 7. Thank you.