Interface GaIAEventEmitter

イベント発行するインスタンスのI/F

interface GaIAEventEmitter {
    addEventListener(eventName, func, options?): void;
    removeEventListener(eventName, func, options?): void;
}

Implemented by

Methods

  • イベントリスナーを設定

    Parameters

    • eventName: string

      イベント名

    • func: ((ev) => any)

      イベントハンドラ

    • Optional options: GaIAEventListenerOptions

      オプション

    Returns void

  • イベントリスナーの削除

    Parameters

    • eventName: string

      イベント名

    • func: ((ev) => any)

      イベントハンドラ

    • Optional options: GaIAEventListenerOptions

      オプション

    Returns void