We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72f46d4 commit bc38bb2Copy full SHA for bc38bb2
src/inMemory.ts
@@ -53,7 +53,7 @@ export class InMemoryTransport implements Transport {
53
* Sends a message with optional auth info.
54
* This is useful for testing authentication scenarios.
55
*/
56
- async sendWithAuth(message: JSONRPCMessage, authInfo?: AuthInfo): Promise<void> {
+ async send(message: JSONRPCMessage, options?: { authInfo?: AuthInfo }): Promise<void>
57
if (!this._otherTransport) {
58
throw new Error("Not connected");
59
}
0 commit comments