/**
 * Event list
 *
 * @description An object that maps a list of events with callbacks.
 * @interface EventsList
 * @export
 */
export default interface EventsList {
    [key: string]: any;
}
