(config?: Args.Args.BaseArgsConfig)
| 187 | |
| 188 | /** @internal */ |
| 189 | export const boolean = (config?: Args.Args.BaseArgsConfig): Args.Args<boolean> => |
| 190 | makeSingle(Option.fromNullable(config?.name), InternalPrimitive.boolean(Option.none())) |
| 191 | |
| 192 | /** @internal */ |
| 193 | export const choice = <A>( |
nothing calls this directly
no test coverage detected
searching dependent graphs…