Interface BaseEvent<TEventType>

The minimal basic Event that can be dispatched by a <>.

interface BaseEvent<TEventType> {
    type: TEventType;
}

Type Parameters

  • TEventType extends string = string

Properties

Properties