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

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