Type alias EventsMap

EventsMap: {
    [key: string]: ((arg) => void);
}

An events map is an interface that maps event names to their value, which represents the type of the on listener.

Type declaration

  • [key: string]: ((arg) => void)
      • (arg): void
      • Parameters

        • arg: any

        Returns void

Generated using TypeDoc