Function
text
(opts: Parameters<typeof prompts.text>[0])
Source from the content-addressed store, hash-verified
| 23 | Effect.promise(() => prompts.autocomplete(opts)).pipe(Effect.map((result) => optional(result))) |
| 24 | |
| 25 | export const text = (opts: Parameters<typeof prompts.text>[0]) => |
| 26 | Effect.promise(() => prompts.text(opts)).pipe(Effect.map((result) => optional(result))) |
| 27 | |
| 28 | export const password = (opts: Parameters<typeof prompts.password>[0]) => |
| 29 | Effect.promise(() => prompts.password(opts)).pipe(Effect.map((result) => optional(result))) |
Callers
nothing calls this directly
Tested by
no test coverage detected