( config?: Args.Args.BaseArgsConfig )
| 215 | |
| 216 | /** @internal */ |
| 217 | export const fileContent = ( |
| 218 | config?: Args.Args.BaseArgsConfig |
| 219 | ): Args.Args<readonly [path: string, content: Uint8Array]> => |
| 220 | mapEffect( |
| 221 | file({ ...config, exists: "yes" }), |
| 222 | (path) => Effect.mapError(InternalFiles.read(path), (e) => InternalHelpDoc.p(e)) |
| 223 | ) |
| 224 | |
| 225 | /** @internal */ |
| 226 | export const fileParse = ( |