aboutsummaryrefslogtreecommitdiff
path: root/src/commands/utilities/remind.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/utilities/remind.ts')
-rw-r--r--src/commands/utilities/remind.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/commands/utilities/remind.ts b/src/commands/utilities/remind.ts
index 044d4fc..8727879 100644
--- a/src/commands/utilities/remind.ts
+++ b/src/commands/utilities/remind.ts
@@ -1,4 +1,4 @@
-import { BushCommand, Reminder, Time, type ArgType, type BushMessage, type BushSlashMessage } from '#lib';
+import { BushCommand, Reminder, Time, type CommandMessage, type OptArgType, type SlashMessage } from '#lib';
import { ApplicationCommandOptionType } from 'discord.js';
export default class RemindCommand extends BushCommand {
@@ -28,8 +28,8 @@ export default class RemindCommand extends BushCommand {
}
public override async exec(
- message: BushMessage | BushSlashMessage,
- args: { reminder: ArgType<'contentWithDuration'> | string }
+ message: CommandMessage | SlashMessage,
+ args: { reminder: OptArgType<'contentWithDuration'> | string }
) {
const { duration, content } = await util.castDurationContent(args.reminder, message);