( choices: ReadonlyArray<[string, A]>, config?: Args.Args.BaseArgsConfig )
| 191 | |
| 192 | /** @internal */ |
| 193 | export const choice = <A>( |
| 194 | choices: ReadonlyArray<[string, A]>, |
| 195 | config?: Args.Args.BaseArgsConfig |
| 196 | ): Args.Args<A> => makeSingle(Option.fromNullable(config?.name), InternalPrimitive.choice(choices)) |
| 197 | |
| 198 | /** @internal */ |
| 199 | export const date = (config?: Args.Args.BaseArgsConfig): Args.Args<globalThis.Date> => |
nothing calls this directly
no test coverage detected