(msg: string)
| 3 | |
| 4 | export const intro = (msg: string) => Effect.sync(() => prompts.intro(msg)) |
| 5 | export const outro = (msg: string) => Effect.sync(() => prompts.outro(msg)) |
| 6 | |
| 7 | export const log = { |
| 8 | info: (msg: string) => Effect.sync(() => prompts.log.info(msg)), |