From 307bc2a38e88b2fb35273df3c33139a6f8c265e1 Mon Sep 17 00:00:00 2001 From: tamaina Date: Sun, 21 May 2023 15:15:25 +0000 Subject: [PATCH] fix... --- packages/misskey-js/src/api.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/misskey-js/src/api.ts b/packages/misskey-js/src/api.ts index 090f328638..9ccd983961 100644 --- a/packages/misskey-js/src/api.ts +++ b/packages/misskey-js/src/api.ts @@ -42,7 +42,7 @@ export class APIClient { this.fetch = opts.fetch ?? ((...args) => fetch(...args)); } - public request, M extends IEndpointMeta = Endpoints[E], R = ResponseOf>( + public request, M extends IEndpointMeta = Endpoints[E], R = ResponseOf>( endpoint: E, params: P, credential?: string | null | undefined, ): Promise {