refactor(misskey-js): warnを除去 (#14520)
This commit is contained in:
parent
567acea2a3
commit
0d0cd738f8
|
@ -67,6 +67,8 @@ export class APIClient {
|
||||||
): Promise<SwitchCaseResponseType<E, P>> {
|
): Promise<SwitchCaseResponseType<E, P>> {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
let mediaType = 'application/json';
|
let mediaType = 'application/json';
|
||||||
|
// (autogenがバグったときのため、念の為nullチェックも行う)
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
|
||||||
if (this.assertSpecialEpReqType(endpoint) && endpointReqTypes[endpoint] != null) {
|
if (this.assertSpecialEpReqType(endpoint) && endpointReqTypes[endpoint] != null) {
|
||||||
mediaType = endpointReqTypes[endpoint];
|
mediaType = endpointReqTypes[endpoint];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue