Type Alias TypedEvents

TypedEvents: {
    [k in string | symbol]: TypedListener
} & {
    *: ((event: string, ...args: any[]) => any);
}