style: format files

This commit is contained in:
ayntee
2021-03-20 10:08:30 +04:00
parent 5125ffd308
commit e4fc09069f
8 changed files with 7 additions and 8 deletions

1
mod.ts
View File

@@ -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";

View File

@@ -181,4 +181,4 @@ export interface CacheData {
) => void
>;
executedSlashCommands: Collection<string, string>;
}
}

View File

@@ -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";

View File

@@ -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";

View File

@@ -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";

View File

@@ -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";

View File

@@ -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";

View File

@@ -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";