import { ReactiveControllerHost } from '@lit/reactive-element'; import { BatchingElement } from './BatchingElement'; export class ImplementsElement extends BatchingElement implements Pick { classField; static get observedAttributes() { return [...super.observedAttributes, 'class-attr'] }; async implementsMethod() {} classMethod() { this.dispatchEvent(new Event('class-event')) } }