(value: string)
| 1328 | } |
| 1329 | const primitive = self.argumentOption.primitiveType |
| 1330 | const validatePrimitive = (value: string) => |
| 1331 | InternalPrimitive.validate(primitive, Option.some(value), config).pipe( |
| 1332 | Effect.mapError((e) => InternalValidationError.invalidValue(InternalHelpDoc.p(e))) |
| 1333 | ) |
| 1334 | return Effect.forEach(values, (value) => validatePrimitive(value)) |
| 1335 | } |
| 1336 | // If we did not receive any variadic arguments then perform the bounds |
no test coverage detected