@bodil/dom
    Preparing search index...

    Type Alias EmitsSuper<C, A>

    EmitsSuper: { [K in keyof C["emits"] | A]: never }

    Declare the events that can be emitted, including the events listed in the provided superclass.

    Type Parameters

    class MyElement extends MySuperclassElement {
    emits!: EmitsSuper<MySuperclassElement, "click">;
    }