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

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