From dfffdf1f00730abf688d199c35a9058c6efb2a1e Mon Sep 17 00:00:00 2001 From: MARCROCK22 Date: Thu, 14 Nov 2024 19:24:45 -0400 Subject: [PATCH] fix: remove protected --- src/client/base.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/base.ts b/src/client/base.ts index 8699711..9af6783 100644 --- a/src/client/base.ts +++ b/src/client/base.ts @@ -286,7 +286,7 @@ export class BaseClient { * @param rawBody body of interaction * @returns */ - protected async onInteractionRequest(rawBody: APIInteraction): Promise<{ + async onInteractionRequest(rawBody: APIInteraction): Promise<{ headers: { 'Content-Type'?: string }; response: APIInteractionResponse | FormData; }> {