From 51fc6dae08b6cec678323c09ed56907d39194e00 Mon Sep 17 00:00:00 2001 From: Will Cory Date: Mon, 15 Jan 2024 11:32:23 -0800 Subject: [PATCH] chore: Add missing jsdoc to client (#3233) Noticed this was missing while reading client code --- packages/client/src/rpc/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/client/src/rpc/index.ts b/packages/client/src/rpc/index.ts index c3b4eeb068..c643560adb 100644 --- a/packages/client/src/rpc/index.ts +++ b/packages/client/src/rpc/index.ts @@ -26,6 +26,7 @@ export class RPCManager { /** * Returns bound methods for modules concat with underscore `_` * @param engine Pass true to return only `engine_` API endpoints (default: false) + * @param rpcDebug Pass true to include stack traces on errors (default: false) */ getMethods(engine = false, rpcDebug = false) { const methods: { [key: string]: Function } = {}