blob: 98827403f6571ae7607ae5cbe107f28d76fd2afc (
plain)
1
2
3
4
5
6
|
import { type BushArgumentTypeCaster } from '@lib';
export const durationSecondsTypeCaster: BushArgumentTypeCaster = (_, phrase): number | null => {
phrase += 's';
return client.util.parseDuration(phrase).duration;
};
|