Go to repository

Type Alias EventSignature<L>

EventSignature<L>: {
    [E in keyof L]: ((...args: any[]) => any)
}

This type describes the basic mapping of available events to the corresponding subscriber functions that may subscribe to such event. Multiple events could be added, with different signatures for each subscriber.

Type Parameters

  • L