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

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