I am getting a element ref by below code and I want add a class and remove a class from all the elements which i get.
app.component.html
<ul>
<li class="option-btn cm-grey" />option 1</li>
<li class="option-btn cm-grey" />option 1</li>
<li class="option-btn cm-grey" />option 1</li>
</ul>
app.component.ts
var allbtn = document.querySelectorAll('.option-btn');
allbtn.removeClass('cm-grey');
allbtn.addClass('cm-blue');
Above code is not working.