From abcafe76284d190e41941571999e280b402bd8e1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 28 Nov 2021 14:28:54 +0000 Subject: Automatically format code --- src/lib/extensions/discord-akairo/BushClientUtil.ts | 2 +- src/lib/extensions/discord-akairo/BushCommand.ts | 2 +- src/lib/utils/BushLogger.ts | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) (limited to 'src/lib') diff --git a/src/lib/extensions/discord-akairo/BushClientUtil.ts b/src/lib/extensions/discord-akairo/BushClientUtil.ts index 889cd6e..cded096 100644 --- a/src/lib/extensions/discord-akairo/BushClientUtil.ts +++ b/src/lib/extensions/discord-akairo/BushClientUtil.ts @@ -790,7 +790,7 @@ export class BushClientUtil extends ClientUtil { * Discord.js's Util constants */ public get discordConstants() { - return DiscordConstants + return DiscordConstants; } /** diff --git a/src/lib/extensions/discord-akairo/BushCommand.ts b/src/lib/extensions/discord-akairo/BushCommand.ts index 8872831..d8f0d38 100644 --- a/src/lib/extensions/discord-akairo/BushCommand.ts +++ b/src/lib/extensions/discord-akairo/BushCommand.ts @@ -29,7 +29,7 @@ export type BaseBushArgumentType = | 'roleWithDuration' | 'abbreviatedNumber' | 'globalUser' - | 'messageLink' + | 'messageLink'; export type BushArgumentType = BaseBushArgumentType | RegExp; diff --git a/src/lib/utils/BushLogger.ts b/src/lib/utils/BushLogger.ts index 3421985..5bae96d 100644 --- a/src/lib/utils/BushLogger.ts +++ b/src/lib/utils/BushLogger.ts @@ -62,8 +62,8 @@ export class BushLogger { return BushLogger.info; } - /** - * Sends a message to the log channel + /** + * Sends a message to the log channel * @param message The parameter to pass to {@link PartialTextBasedChannelFields.send} */ public static async channelLog(message: BushSendMessageType) { @@ -71,8 +71,8 @@ export class BushLogger { await channel.send(message).catch(() => {}); } - /** - * Sends a message to the error channel + /** + * Sends a message to the error channel */ public static async channelError(message: BushSendMessageType): Promise { const channel = await util.getConfigChannel('error'); @@ -213,4 +213,4 @@ export class BushLogger { } } -/** @typedef {PartialTextBasedChannelFields} vscodeDontDeleteMyImportTy */ \ No newline at end of file +/** @typedef {PartialTextBasedChannelFields} vscodeDontDeleteMyImportTy */ -- cgit