(config?: Args.Args.PathArgsConfig)
| 208 | |
| 209 | /** @internal */ |
| 210 | export const file = (config?: Args.Args.PathArgsConfig): Args.Args<string> => |
| 211 | makeSingle( |
| 212 | Option.fromNullable(config?.name), |
| 213 | InternalPrimitive.path("file", config?.exists || "either") |
| 214 | ) |
| 215 | |
| 216 | /** @internal */ |
| 217 | export const fileContent = ( |
no test coverage detected