Function GenericEvent

  • Type Parameters

    • K extends keyof HTMLElementEventMap

    Parameters

    • htmlElementID: string

      the element to bind the event to

    • type: K

      the event to bind

    Returns (<This>(target, context) => void)

    DecoratorCallback

      • <This>(target, context): void
      • Type Parameters

        Parameters

        • target: ((this, event) => void)
            • (this, event): void
            • Parameters

              • this: This
              • event: ExtendedEventMap[K]

              Returns void

        • context: ClassMethodDecoratorContext<This, ((this, event) => void)>

        Returns void

    Description

    Decorator to bind a generic event to an element

    Export

    Example

    @GenericEvent("myButton", "click")
    myButtonClick(e: MouseEvent) {
    console.log("Button was clicked");
    }

Generated using TypeDoc