A PromiseSettledResult to check
A type predicate indicating if the promise was fulfilled
const promises = await Promise.allSettled([
Promise.resolve(1),
Promise.reject('error')
]);
// Filter to get only successful results with type safety
const fulfilled = promises.filter(assertFulfilled);
// fulfilled is now PromiseFulfilledResult<number>[]
// Access the values safely
const values = fulfilled.map(result => result.value);
Type guard that checks if a PromiseSettledResult was fulfilled successfully