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 222db4a commit ee16173Copy full SHA for ee16173
src/shared/protocol.ts
@@ -217,7 +217,10 @@ export abstract class Protocol<
217
/**
218
* A handler to invoke for any request types that do not have their own handler installed.
219
*/
220
- fallbackRequestHandler?: (request: Request) => Promise<SendResultT>;
+ fallbackRequestHandler?: (
221
+ request: JSONRPCRequest,
222
+ extra: RequestHandlerExtra<SendRequestT, SendNotificationT>
223
+ ) => Promise<SendResultT>;
224
225
226
* A handler to invoke for any notification types that do not have their own handler installed.
0 commit comments