Type Alias WxProtocolBoundSender

WxProtocolBoundSender: {
    send<TReturn>(fId: number, data: unknown[]): WxPromise<TReturn>;
    sendVoid(fId: number, data: unknown[]): WxPromise<void>;
}

Sender type bound to a specific protocol.

This is the internal type used by generated sender classes to execute RPC calls.

Type declaration