Format files

This commit is contained in:
ayntee
2021-04-13 06:05:20 +00:00
parent 405f362ec9
commit b633689d3a
9 changed files with 24 additions and 19 deletions
+3 -3
View File
@@ -16,7 +16,7 @@ import { Collection } from "../../util/collection.ts";
export function fetchMembers(
guildId: string,
shardId: number,
options?: RequestGuildMembers
options?: RequestGuildMembers,
) {
// You can request 1 member without the intent
if (
@@ -41,9 +41,9 @@ function requestAllMembers(
resolve: (
value:
| Collection<string, DiscordenoMember>
| PromiseLike<Collection<string, DiscordenoMember>>
| PromiseLike<Collection<string, DiscordenoMember>>,
) => void,
options: any
options: any,
): void {
throw new Error("Function not implemented.");
}