diff options
author | github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | 2021-11-28 14:28:54 +0000 |
---|---|---|
committer | github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | 2021-11-28 14:28:54 +0000 |
commit | abcafe76284d190e41941571999e280b402bd8e1 (patch) | |
tree | 90706041cc966f69495c526072ee044f3b1655fd /src/lib | |
parent | 453683b57b8ff013ff25e2aaa4aa1d2e047edcb7 (diff) | |
download | tanzanite-abcafe76284d190e41941571999e280b402bd8e1.tar.gz tanzanite-abcafe76284d190e41941571999e280b402bd8e1.tar.bz2 tanzanite-abcafe76284d190e41941571999e280b402bd8e1.zip |
Automatically format code
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/extensions/discord-akairo/BushClientUtil.ts | 2 | ||||
-rw-r--r-- | src/lib/extensions/discord-akairo/BushCommand.ts | 2 | ||||
-rw-r--r-- | src/lib/utils/BushLogger.ts | 10 |
3 files changed, 7 insertions, 7 deletions
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<Message> { 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 */ |