Interface EventListenerObject<EventType>

interface EventListenerObject<EventType> {
    handleEvent(event: EventType): void;
}

Type Parameters

Methods

Methods

  • Parameters

    Returns void