Function Click

  • Type Parameters

    Parameters

    • htmlElementID: string

      the element to bind the event to

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

    DecoratorCallback

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

        Parameters

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

              • this: This
              • event: MouseEvent

              Returns void

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

        Returns void

    Description

    Decorator to bind a click event to an element

    Export

    Example

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

Generated using TypeDoc