Skip to main content

NotificationParametersSignatureFromSubscriberSignature TypeAlias

Converts a notification subscriber signature into parameters signature (by removing the sender: Attendee parameter).

This API is reserved for internal system use and should not be imported directly. It may change at any time without notice.

For more information about our API support guarantees, see here.

Signature

type NotificationParametersSignatureFromSubscriberSignature<Event> = Event extends (sender: Attendee, ...args: infer P) => void ? (...args: P) => void : never;

Type Parameters

ParameterDescription
Event

Remarks

No attempt is made to validate that the original signature is valid with all parameters being JSON-serializable.