bastienrobert/events

View on GitHub
src/types.ts

Summary

Maintainability
A
0 mins
Test Coverage
export type Event = (...args: any[]) => any
export type Events = { [index: string]: Event[] }