Adding a static class to the host element with the Lit Element Framework?

If we want to add a persistant class to a Lit Element web component one way of doing it is like this.

  connectedCallback() {
    this.classList.add('TEST_CLASS');
  }

Curious if there’s another way of doing it? For example Angular has:

@HostBinding('class') class = 'someClass';