Linted code

This commit is contained in:
ayntee
2020-11-13 18:09:27 +04:00
parent d73cd38c6c
commit 49815b579d
+4 -1
View File
@@ -617,5 +617,8 @@ export function getUser(userID: string) {
* So it does not cache the guild, you must do it manually. * So it does not cache the guild, you must do it manually.
* */ * */
export function getGuild(guildID: string, counts = true) { export function getGuild(guildID: string, counts = true) {
return RequestManager.get(endpoints.GUILD(guildID), { with_counts: counts }) as Promise<UpdateGuildPayload> return RequestManager.get(
endpoints.GUILD(guildID),
{ with_counts: counts },
) as Promise<UpdateGuildPayload>;
} }