( name: string, config?: Options.Options.PathOptionsConfig )
| 290 | |
| 291 | /** @internal */ |
| 292 | export const file = ( |
| 293 | name: string, |
| 294 | config?: Options.Options.PathOptionsConfig |
| 295 | ): Options.Options<string> => |
| 296 | makeSingle( |
| 297 | name, |
| 298 | Arr.empty(), |
| 299 | InternalPrimitive.path("file", config?.exists ?? "either") |
| 300 | ) |
| 301 | |
| 302 | /** @internal */ |
| 303 | export const fileContent = ( |
no test coverage detected
searching dependent graphs…