Prettified Code!

This commit is contained in:
itohatweb
2021-05-21 15:55:49 +00:00
committed by GitHub Action
parent 71a20fb0f4
commit 179add27c9
271 changed files with 889 additions and 3067 deletions
+1 -6
View File
@@ -5,12 +5,7 @@ import { Collection } from "../../util/collection.ts";
import { endpoints } from "../../util/constants.ts";
/** Get a list of users that reacted with this emoji. */
export async function getReactions(
channelId: bigint,
messageId: bigint,
reaction: string,
options?: GetReactions
) {
export async function getReactions(channelId: bigint, messageId: bigint, reaction: string, options?: GetReactions) {
const users = await rest.runMethod<User[]>(
"get",
endpoints.CHANNEL_MESSAGE_REACTION(channelId, messageId, reaction),