1
0

refactor(misskey-js): warnを除去 (#14520)

This commit is contained in:
かっこかり
2024-09-07 02:38:01 +09:00
committed by GitHub
parent 567acea2a3
commit 0d0cd738f8
+3 -1
View File
@@ -67,10 +67,12 @@ export class APIClient {
): Promise<SwitchCaseResponseType<E, P>> {
return new Promise((resolve, reject) => {
let mediaType = 'application/json';
// (autogenがバグったときのため、念の為nullチェックも行う)
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
if (this.assertSpecialEpReqType(endpoint) && endpointReqTypes[endpoint] != null) {
mediaType = endpointReqTypes[endpoint];
}
let payload: FormData | string = '{}';
if (mediaType === 'application/json') {