Type Alias SendMessageFn<T>

SendMessageFn: (outgoing: IOutgoingMessage) => Promise<T>

Type representing a function for sending messages.

Type Parameters

  • T = void

    The return type of the send operation, defaults to void.

Type declaration

    • (outgoing: IOutgoingMessage): Promise<T>
    • Parameters

      Returns Promise<T>

      A promise resolving to the result of the send operation, or the result directly.