The event interface.

interface Event<T> {
    operation: ((widget, effect, element) => void);
}

Type Parameters

  • T

Properties

Properties

operation: ((widget, effect, element) => void)

The operation when set event.

Type declaration

    • (widget, effect, element): void
    • Parameters

      • widget: T

        The widget's self.

      • effect: ((widget, ...arg) => any)

        The effect function of this widget.

          • (widget, ...arg): any
          • Parameters

            • widget: Widget
            • Rest ...arg: any[]

            Returns any

      • element: HTMLCanvasElement

        The canvas element of this app.

      Returns void

Returns