Skip to main content

Settled

interface Settled

Called when the promise receives a resolution or rejection value. This may occur synchronously in the case of Promise.resolve() or Promise.reject().

Call Signatures Jump to heading

(promise: Promise<unknown>): void
Back to top