(config?: Args.Args.PathArgsConfig)
| 265 | |
| 266 | /** @internal */ |
| 267 | export const path = (config?: Args.Args.PathArgsConfig): Args.Args<string> => |
| 268 | makeSingle( |
| 269 | Option.fromNullable(config?.name), |
| 270 | InternalPrimitive.path("either", config?.exists || "either") |
| 271 | ) |
| 272 | |
| 273 | /** @internal */ |
| 274 | export const redacted = ( |
nothing calls this directly
no test coverage detected