(config?: Args.Args.PathArgsConfig)
| 201 | |
| 202 | /** @internal */ |
| 203 | export const directory = (config?: Args.Args.PathArgsConfig): Args.Args<string> => |
| 204 | makeSingle( |
| 205 | Option.fromNullable(config?.name), |
| 206 | InternalPrimitive.path("directory", config?.exists || "either") |
| 207 | ) |
| 208 | |
| 209 | /** @internal */ |
| 210 | export const file = (config?: Args.Args.PathArgsConfig): Args.Args<string> => |
nothing calls this directly
no test coverage detected
searching dependent graphs…