aboutsummaryrefslogtreecommitdiff
path: root/src/commands/dev/_testDuration.ts
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-08-04 19:32:39 -0400
committerIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-08-04 19:32:39 -0400
commitb5793611d57a734d75b6a0845c441f33d144a5c0 (patch)
tree1deb4dc4cd0e1e575b1bc32ed0ae50085c7a3ecf /src/commands/dev/_testDuration.ts
parent41c532de2c7786b2bb8ba5d78f092fed3cc6b63a (diff)
downloadtanzanite-b5793611d57a734d75b6a0845c441f33d144a5c0.tar.gz
tanzanite-b5793611d57a734d75b6a0845c441f33d144a5c0.tar.bz2
tanzanite-b5793611d57a734d75b6a0845c441f33d144a5c0.zip
misc
Diffstat (limited to 'src/commands/dev/_testDuration.ts')
-rw-r--r--src/commands/dev/_testDuration.ts53
1 files changed, 0 insertions, 53 deletions
diff --git a/src/commands/dev/_testDuration.ts b/src/commands/dev/_testDuration.ts
deleted file mode 100644
index 0591518..0000000
--- a/src/commands/dev/_testDuration.ts
+++ /dev/null
@@ -1,53 +0,0 @@
-// import { BushCommand, BushSlashMessage } from '@lib';
-// import { stripIndents } from 'common-tags';
-// import { Message } from 'discord.js';
-
-// export default class TestDurationCommand extends BushCommand {
-// public constructor() {
-// super('testduration', {
-// aliases: ['testduration'],
-// category: 'dev',
-// description: {
-// content: 'Tests duration parsing.',
-// usage: 'testduration [reason]',
-// examples: ['testduration']
-// },
-// args: [
-// {
-// id: 'reason',
-// type: 'contentWithDuration',
-// match: 'rest',
-// prompt: {
-// start: 'Enter text and a duration here.',
-// retry: '{error} Error parsing duration and text.',
-// optional: true
-// }
-// }
-// ],
-// slash: true,
-// slashOptions: [
-// {
-// name: 'reason',
-// description: 'Enter text and a duration here.',
-// type: 'STRING',
-// required: false
-// }
-// ],
-// hidden: true,
-// ownerOnly: true
-// });
-// }
-
-// async exec(
-// message: Message | BushSlashMessage,
-// { reason }: { reason?: { duration: number; contentWithoutTime: string } }
-// ): Promise<unknown> {
-// const rawDuration = reason.duration;
-// const text = reason.contentWithoutTime;
-// const humanizedDuration = util.humanizeDuration(rawDuration);
-// return await message.util.reply(stripIndents`
-// **rawDuration:** ${rawDuration}
-// **text:** ${text}
-// **humanizedDuration:** ${humanizedDuration}`);
-// }
-// }