Function WindowEvent

  • Type Parameters

    • K extends keyof WindowEventMap

    Parameters

    • 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: WindowEventMap[K]

              Returns void

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

        Returns void

    Description

    Decorator to bind a window event to the window

    Export

    Example

    @WindowEvent("resize")
    onResize(e: WindowEvent) {
    console.log("Window was resized");
    }

Generated using TypeDoc