( schema: Schema.Schema<A, I, FileSystem.FileSystem | Path.Path | Terminal.Terminal>, config?: Args.Args.FormatArgsConfig )
| 234 | |
| 235 | /** @internal */ |
| 236 | export const fileSchema = <I, A>( |
| 237 | schema: Schema.Schema<A, I, FileSystem.FileSystem | Path.Path | Terminal.Terminal>, |
| 238 | config?: Args.Args.FormatArgsConfig |
| 239 | ): Args.Args<A> => withSchema(fileParse(config), schema) |
| 240 | |
| 241 | /** @internal */ |
| 242 | export const fileText = ( |
nothing calls this directly
no test coverage detected