aboutsummaryrefslogtreecommitdiff
path: root/lib/arguments/contentWithDuration.ts
diff options
context:
space:
mode:
Diffstat (limited to 'lib/arguments/contentWithDuration.ts')
-rw-r--r--lib/arguments/contentWithDuration.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/arguments/contentWithDuration.ts b/lib/arguments/contentWithDuration.ts
index 0efba39..ec015dc 100644
--- a/lib/arguments/contentWithDuration.ts
+++ b/lib/arguments/contentWithDuration.ts
@@ -1,5 +1,5 @@
-import { parseDuration, type BushArgumentTypeCaster, type ParsedDuration } from '#lib';
+import { parseDuration, type BotArgumentTypeCaster, type ParsedDuration } from '#lib';
-export const contentWithDuration: BushArgumentTypeCaster<Promise<ParsedDuration>> = async (_, phrase) => {
+export const contentWithDuration: BotArgumentTypeCaster<Promise<ParsedDuration>> = async (_, phrase) => {
return parseDuration(phrase);
};