blob: cd8549b813feb43062cf129d67fc498f89910710 (
plain)
1
2
3
4
5
|
import { type BushArgumentTypeCaster, type ParsedDuration } from '#lib';
export const contentWithDuration: BushArgumentTypeCaster<Promise<ParsedDuration>> = async (_, phrase) => {
return client.util.parseDuration(phrase);
};
|