blob: 8deee5b523a9f178b777ad68698ba16efc6f29d5 (
plain)
1
2
3
4
5
6
|
import { parseDuration, type BotArgumentTypeCaster } from '#lib';
export const durationSeconds: BotArgumentTypeCaster<number | null> = (_, phrase) => {
phrase += 's';
return parseDuration(phrase).duration;
};
|