diff --git a/api/index.d.ts b/api/index.d.ts index 1395e516ad..8d0020a72a 100644 --- a/api/index.d.ts +++ b/api/index.d.ts @@ -9478,11 +9478,9 @@ declare module "socket:internal/conduit" { * * @param {object} params - The parameters for the Conduit. * @param {string} params.id - The ID for the connection. - * @param {string} params.method - The method to use for the connection. */ constructor({ id }: { id: string; - method: string; }); /** * @type {boolean} diff --git a/api/internal/conduit.js b/api/internal/conduit.js index f9351f88d0..5ddd354557 100644 --- a/api/internal/conduit.js +++ b/api/internal/conduit.js @@ -188,7 +188,6 @@ export class Conduit extends EventTarget { * * @param {object} params - The parameters for the Conduit. * @param {string} params.id - The ID for the connection. - * @param {string} params.method - The method to use for the connection. */ constructor ({ id }) { super()