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

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