ES2020' `Promise.allSettled` uses some additional types where `reason` field is untyped and can be changed to `unknown`: ```typescript interface PromiseRejectedResult { status: "rejected"; reason: any; } ```