( config?: Args.Args.FormatArgsConfig )
| 224 | |
| 225 | /** @internal */ |
| 226 | export const fileParse = ( |
| 227 | config?: Args.Args.FormatArgsConfig |
| 228 | ): Args.Args<unknown> => |
| 229 | mapEffect(fileText(config), ([path, content]) => |
| 230 | Effect.mapError( |
| 231 | InternalFiles.parse(path, content, config?.format), |
| 232 | (e) => InternalHelpDoc.p(e) |
| 233 | )) |
| 234 | |
| 235 | /** @internal */ |
| 236 | export const fileSchema = <I, A>( |
no test coverage detected
searching dependent graphs…