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
Adds a new `signal` option to support programmatic prompt cancellation with an [abort controller](https://kettanaito.com/blog/dont-sleep-on-abort-controller).
7
+
8
+
One example use case is automatically cancelling a prompt after a timeout.
9
+
10
+
```ts
11
+
const shouldContinue =awaitconfirm({
12
+
message: 'This message will self destruct in 5 seconds',
13
+
signal: AbortSignal.timeout(5000),
14
+
});
15
+
```
16
+
17
+
Another use case is racing a long running task with a manual prompt.
0 commit comments