From e4fc09069f157ecf3c8f9ccbdf6edae6544cc04e Mon Sep 17 00:00:00 2001 From: ayntee Date: Sat, 20 Mar 2021 10:08:30 +0400 Subject: [PATCH] style: format files --- mod.ts | 1 - src/cache.ts | 2 +- src/handlers/misc/READY.ts | 2 +- src/structures/channel.ts | 2 +- src/structures/guild.ts | 2 +- src/structures/member.ts | 2 +- src/structures/message.ts | 2 +- src/ws/shard_manager.ts | 2 +- 8 files changed, 7 insertions(+), 8 deletions(-) diff --git a/mod.ts b/mod.ts index 8198f2168..f05bc440f 100644 --- a/mod.ts +++ b/mod.ts @@ -14,4 +14,3 @@ export * from "./src/util/collection.ts"; export * from "./src/util/permissions.ts"; export * from "./src/util/utils.ts"; export * from "./src/ws/mod.ts"; - diff --git a/src/cache.ts b/src/cache.ts index bde29c927..3b64e7d53 100644 --- a/src/cache.ts +++ b/src/cache.ts @@ -181,4 +181,4 @@ export interface CacheData { ) => void >; executedSlashCommands: Collection; -} \ No newline at end of file +} diff --git a/src/handlers/misc/READY.ts b/src/handlers/misc/READY.ts index 904beb7d9..3a11c96eb 100644 --- a/src/handlers/misc/READY.ts +++ b/src/handlers/misc/READY.ts @@ -2,7 +2,7 @@ import { eventHandlers, lastShardID, setApplicationID, - setBotID + setBotID, } from "../../bot.ts"; import { cache, cacheHandlers } from "../../cache.ts"; import { initialMemberLoadQueue } from "../../structures/guild.ts"; diff --git a/src/structures/channel.ts b/src/structures/channel.ts index d9c2ea5fe..c0dd7377d 100644 --- a/src/structures/channel.ts +++ b/src/structures/channel.ts @@ -13,7 +13,7 @@ import { MessageContent, Overwrite, Permission, - RawOverwrite + RawOverwrite, } from "../types/mod.ts"; import { Collection } from "../util/collection.ts"; import { createNewProp } from "../util/utils.ts"; diff --git a/src/structures/guild.ts b/src/structures/guild.ts index 1358b6ab9..61cf1c9c3 100644 --- a/src/structures/guild.ts +++ b/src/structures/guild.ts @@ -23,7 +23,7 @@ import { ImageSize, MemberCreatePayload, Presence, - VoiceState + VoiceState, } from "../types/mod.ts"; import { Collection } from "../util/collection.ts"; import { createNewProp } from "../util/utils.ts"; diff --git a/src/structures/member.ts b/src/structures/member.ts index c497779e7..d349280e2 100644 --- a/src/structures/member.ts +++ b/src/structures/member.ts @@ -13,7 +13,7 @@ import { ImageFormats, ImageSize, MemberCreatePayload, - MessageContent + MessageContent, } from "../types/mod.ts"; import { Collection } from "../util/collection.ts"; import { createNewProp } from "../util/utils.ts"; diff --git a/src/structures/message.ts b/src/structures/message.ts index 7f3be9439..04582e335 100644 --- a/src/structures/message.ts +++ b/src/structures/message.ts @@ -20,7 +20,7 @@ import { MessageCreateOptions, MessageSticker, Reaction, - UserPayload + UserPayload, } from "../types/mod.ts"; import { createNewProp } from "../util/utils.ts"; import { Channel } from "./channel.ts"; diff --git a/src/ws/shard_manager.ts b/src/ws/shard_manager.ts index 0b682b3be..a6e991c40 100644 --- a/src/ws/shard_manager.ts +++ b/src/ws/shard_manager.ts @@ -7,7 +7,7 @@ import { DiscordIdentify, DiscordPayload, FetchMembersOptions, - GatewayOpcode + GatewayOpcode, } from "../types/mod.ts"; import { Collection } from "../util/collection.ts"; import { delay } from "../util/utils.ts";