Skip to content

Interface: EventListenerMap

Describes the shape of the internal event listener map.

Indexable

ts
[key: string | symbol]: {
  ctx: any;
  fn: (...args: any[]) => void;
}[]