aboutsummaryrefslogtreecommitdiff
path: root/src/arguments/contentWithDuration.ts
blob: 38b3fa493ae505720551e4bd97c9fd9b8f8c9248 (plain)
1
2
3
4
5
6
7
8
import { BushArgumentTypeCaster } from '@lib';

export const contentWithDurationTypeCaster: BushArgumentTypeCaster = async (
	_,
	phrase
): Promise<{ duration: number; contentWithoutTime: string | null }> => {
	return client.util.parseDuration(phrase);
};