Function Input

  • 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)
        • context: ClassMethodDecoratorContext<This, ((this, event) => void)>

        Returns void

    Description

    Decorator to bind an input event to an element

    Export

    Example

    @Input("myInput")
    myInputChange(e: InputEvent) {
    console.log("Input changed");
    }

Generated using TypeDoc