( name: string, choices: C )
| 270 | |
| 271 | /** @internal */ |
| 272 | export const choiceWithValue = <const C extends ReadonlyArray<[string, any]>>( |
| 273 | name: string, |
| 274 | choices: C |
| 275 | ): Options.Options<C[number][1]> => makeSingle(name, Arr.empty(), InternalPrimitive.choice(choices)) |
| 276 | |
| 277 | /** @internal */ |
| 278 | export const date = (name: string): Options.Options<Date> => makeSingle(name, Arr.empty(), InternalPrimitive.date) |
nothing calls this directly
no test coverage detected
searching dependent graphs…