Go to repository

Type Alias DefaultEventSignature

DefaultEventSignature: Record<string, ((...args: any[]) => any)>

This type is a specification of EventSignature where each event is key is a string (the most common case), and the subscriber functions are any function. This is the default behavior of most JavaScript event emitter, and the DOM event's signature.