aboutsummaryrefslogtreecommitdiff
path: root/lib/arguments/contentWithDuration.ts
blob: ec015dc4b31bbcebd7013072d6cd00d84b473ef2 (plain)
1
2
3
4
5
import { parseDuration, type BotArgumentTypeCaster, type ParsedDuration } from '#lib';

export const contentWithDuration: BotArgumentTypeCaster<Promise<ParsedDuration>> = async (_, phrase) => {
	return parseDuration(phrase);
};