You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Alternatively, all prompt functions are returning a cancelable promise. This special promise type has a `cancel` method that'll cancel and cleanup the prompt.
217
-
218
-
On calling `cancel`, the answer promise will become rejected.
219
-
220
-
```js
221
-
import { confirm } from'@inquirer/prompts';
222
-
223
-
constpromise=confirm(...); // Warning: for this pattern to work, `await` cannot be used.
0 commit comments