Interface AcCmBaseEvent<TEventType>

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

interface AcCmBaseEvent<TEventType extends string = string> {
    type: TEventType;
}

Type Parameters

  • TEventType extends string = string

    The string literal type of the event.

Properties

Properties

The type identifier for this event.