| 104 | // single prompt that just returns the non-empty value instead of an object |
| 105 | // @ts-ignore |
| 106 | export const prompt = o => enquirer.prompt({ name: 'name', type: 'input', message: 'Enter value', ...o }).then(r => r.name).catch(_ => {}); |
| 107 | export const confirm = o => prompt({ type: 'confirm', message: 'Continue?', ...o }); |
| 108 | |
| 109 | // notifications via apprise CLI |
no outgoing calls
no test coverage detected