DWS Packages
    Preparing search index...

    Type Alias EventMap

    EventMap: Record<string | number | symbol, unknown[]>

    Base type for event maps used with TypedEventEmitter.

    Each key is an event name and the value is a tuple representing the arguments passed to the listeners of that event.

    interface MyEvents extends EventMap {
    data: [string];
    ready: [];
    }