TypeScript Get Class List for Element

// event => is your element
const isClassExist = event.target.classList.contains('someClass');
Envious Earthworm