Skip to content

Type Alias: EventMap<T>

ts
type EventMap<T> = Record<keyof T, any[]> | DefaultEventMap;

The default shape of the event map.

Type Parameters

Type ParameterDescription
TThe event map.