fix: remove protected

This commit is contained in:
MARCROCK22 2024-11-14 19:24:45 -04:00
parent a3b28d9f7d
commit dfffdf1f00

View File

@ -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;
}> {