Type alias Slot<T, U>

Slot<T, U>: ((sender, args) => void)

Type Parameters

  • T

  • U

Type declaration

    • (sender, args): void
    • A type alias for a slot function.

      Parameters

      • sender: T

        The object emitting the signal.

      • args: U

        The args object emitted with the signal.

        Notes

        A slot is invoked when a signal to which it is connected is emitted.

      Returns void

Generated using TypeDoc