refactor: fix types

This commit is contained in:
syuilo 2023-02-09 11:02:37 +09:00
parent e1e885d6b2
commit 5facd11592
5 changed files with 9 additions and 4 deletions

View file

@ -372,6 +372,7 @@ export class ClientServerService {
return feed.atom1();
} else {
reply.code(404);
return;
}
});
@ -384,6 +385,7 @@ export class ClientServerService {
return feed.rss2();
} else {
reply.code(404);
return;
}
});
@ -396,6 +398,7 @@ export class ClientServerService {
return feed.json1();
} else {
reply.code(404);
return;
}
});