export function verifyDirSizeThreshold(value: DirSizeThresholdOption): false | string {
    if (typeof value === 'number') {
        const error = verifyDirSizeThresholdMinimum(value);
        if (error) {
            return error;