| 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 |
| 110 | import { execFile } from 'child_process'; |