( name: string, schema: Schema.Schema<A, I, FileSystem.FileSystem | Path.Path | Terminal.Terminal>, format?: "json" | "yaml" | "ini" | "toml" )
| 322 | |
| 323 | /** @internal */ |
| 324 | export const fileSchema = <I, A>( |
| 325 | name: string, |
| 326 | schema: Schema.Schema<A, I, FileSystem.FileSystem | Path.Path | Terminal.Terminal>, |
| 327 | format?: "json" | "yaml" | "ini" | "toml" |
| 328 | ): Options.Options<A> => withSchema(fileParse(name, format), schema) |
| 329 | |
| 330 | /** @internal */ |
| 331 | export const fileText = ( |
nothing calls this directly
no test coverage detected
searching dependent graphs…